알고리즘/Baekjoon
-
[백준] 2959번 거북이 문제풀이알고리즘/Baekjoon 2020. 7. 18. 15:23
풀이 방법 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int[] arr = new int[4]; for(i..