結果

問題 No.601 Midpoint Erase
ユーザー tentententen
提出日時 2022-10-06 16:54:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 2,612 ms
コンパイル使用メモリ 79,548 KB
実行使用メモリ 46,516 KB
最終ジャッジ日時 2025-01-03 08:10:27
合計ジャッジ時間 7,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,888 KB
testcase_01 AC 52 ms
37,756 KB
testcase_02 AC 48 ms
37,744 KB
testcase_03 AC 231 ms
46,072 KB
testcase_04 AC 244 ms
46,060 KB
testcase_05 AC 239 ms
45,272 KB
testcase_06 AC 186 ms
45,016 KB
testcase_07 AC 241 ms
46,516 KB
testcase_08 AC 236 ms
45,824 KB
testcase_09 AC 232 ms
46,276 KB
testcase_10 AC 156 ms
44,096 KB
testcase_11 AC 264 ms
46,428 KB
testcase_12 AC 208 ms
44,864 KB
testcase_13 AC 52 ms
38,004 KB
testcase_14 AC 50 ms
38,104 KB
testcase_15 AC 52 ms
37,888 KB
testcase_16 AC 57 ms
37,964 KB
testcase_17 AC 52 ms
37,840 KB
testcase_18 AC 49 ms
37,760 KB
testcase_19 AC 52 ms
37,632 KB
testcase_20 AC 50 ms
37,856 KB
testcase_21 AC 47 ms
37,956 KB
testcase_22 AC 49 ms
37,888 KB
testcase_23 AC 47 ms
37,760 KB
testcase_24 AC 49 ms
37,832 KB
testcase_25 AC 50 ms
37,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][] counts = new int[2][2];
        for (int i = 0; i < n; i++) {
            counts[sc.nextInt() % 2][sc.nextInt() % 2]++;
        }
        int ans = 0;
        for (int[] arr : counts) {
            for (int x : arr) {
                ans += x / 2;
            }
        }
        if (ans % 2 == 0) {
            System.out.println("Bob");
        } else {
            System.out.println("Alice");
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0