반응형
Notice
Recent Posts
Recent Comments
Link
목록
반응형
백준1697 (1)
반응형
반응형
반응형
7JeY world
[백준 1697번] 숨바꼭질 / Java
[boj 1697번] 숨바꼭질 N : 수빈이의 위치 K : 동생의 위치 X+1 or X-1 : 걷기 X*2 : 순간이동 동생을 찾을 수 있는 가장 빠른 시간을 구하는 문제 public class Main { static int N, K; static int check[] = new int[100001]; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken());..
Programming/for coding test
2020. 3. 22. 12:13