https://www.acmicpc.net/problem/5523
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int aWin = 0;
int bWin = 0;
StringTokenizer st;
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
if (a > b) aWin++;
else if (b > a) bWin++;
}
System.out.println(aWin + " " + bWin);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 3058 짝수를 찾아라 (0) | 2022.12.09 |
---|---|
백준 1284 집주소 (0) | 2022.12.09 |
백준 1290 Mini Fantasy War (0) | 2022.12.08 |
백준 2921 도미노 (0) | 2022.12.08 |
백준 1598 꼬리를 무는 숫자 나열 (0) | 2022.12.08 |