반응형
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N=Integer.parseInt(br.readLine());
StringBuilder sb = new StringBuilder();
for(int i=0;i<N;i++){
String [] input=br.readLine().split(" ");
int input1=Integer.parseInt(input[0]);
int input2=Integer.parseInt(input[1]);
sb.append(input1+input2+"\n");
}
System.out.println(sb);
}
}
자다가 일어나서 엄청 간단한 알고리즘 문제를 풀어봤습니다. 2번째
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[알고리즘] 백준 1966번 프린터 큐 Java (0) | 2021.04.22 |
---|---|
[알고리즘] 백준 11720번 숫자의 합 Java (0) | 2021.04.20 |
[알고리즘] 백준 2438번 별 찍기 -1 Java (0) | 2021.04.15 |
[알고리즘] 백준 1158번: 요세푸스 JAVA (0) | 2021.04.13 |
[알고리즘] 백준 1874번: 스택 수열 JAVA (0) | 2021.04.12 |
댓글