15552번
-
[백준 알고리즘/Java] 15552번 빠른 A+BIT Study/백준 알고리즘 2023. 3. 13. 17:54
사용자에게 입력받는 함수로는 Scanner만 알고 있었기 때문에 처음엔 1000번 'A+B'와 동일하게 작성하게 제출했습니다. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for(int n = 0; n < t; n++) { int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a+b); } } } Scanner와 System.out.println()을 사용하면 시간 초과로 15552번 문제를 넘어갈 수 없습니다. 이를 해결하기 위해서는 Buff..