일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- react firebase
- 리액트 훅
- React JS
- 코틀린
- 리액트
- 데이터모델링과마이닝
- design pattern
- 프로그래머스 완전탐색
- codesandbox
- react
- 컴퓨터 네트워크
- 장고
- useEffect
- vanillaJS
- 자바
- NextJS
- react hook
- 디자인 패턴
- 코딩테스트 고득점 Kit
- 프로그래머스
- 백준
- useState
- 프로그래머스 자바
- Java
- 자바 공부
- 프로그래밍 언어론
- 코딩테스트 고득점 Kit 완전탐색
- websocket
- JavaScript
- 자바스크립트
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 1620 : 나는야 포켓몬 마스터 이다솜 본문
728x90
https://www.acmicpc.net/problem/1620
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String []args) {
Scanner sc=new Scanner(System.in);
int N=sc.nextInt(), M=sc.nextInt();
HashMap<String, Integer> map = new HashMap<>();
String []arr=new String[N];
for(int i=0; i<N; i++){
String s= sc.next();
arr[i]=s;
map.put(s, i+1);
}
for(int i=0; i<M; i++){
if(sc.hasNextInt()) System.out.println(arr[sc.nextInt()-1]);
else System.out.println(map.get(sc.next()));
}
}
}
728x90
'Algorithm' 카테고리의 다른 글
[백준][JAVA] 1874 : 스택 수열 (0) | 2021.07.11 |
---|---|
[백준][JAVA] 10828 : 스택 (0) | 2021.07.11 |
[백준][JAVA] 10816: 숫자 카드2 (0) | 2021.07.11 |
[백준][JAVA] 11726: 2×n 타일링 (0) | 2021.07.11 |
[백준][JAVA] 9095: 1, 2, 3 더하기 (0) | 2021.07.11 |