結果

問題 No.601 Midpoint Erase
ユーザー tentententen
提出日時 2022-10-06 16:54:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 46,436 KB
最終ジャッジ日時 2024-06-11 03:32:38
合計ジャッジ時間 6,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
36,900 KB
testcase_01 AC 43 ms
37,196 KB
testcase_02 AC 44 ms
36,884 KB
testcase_03 AC 202 ms
45,552 KB
testcase_04 AC 235 ms
45,228 KB
testcase_05 AC 196 ms
44,552 KB
testcase_06 AC 164 ms
43,676 KB
testcase_07 AC 221 ms
45,204 KB
testcase_08 AC 209 ms
45,604 KB
testcase_09 AC 216 ms
45,408 KB
testcase_10 AC 134 ms
42,700 KB
testcase_11 AC 245 ms
46,436 KB
testcase_12 AC 192 ms
44,348 KB
testcase_13 AC 42 ms
36,720 KB
testcase_14 AC 41 ms
36,952 KB
testcase_15 AC 42 ms
37,100 KB
testcase_16 AC 43 ms
37,208 KB
testcase_17 AC 44 ms
36,984 KB
testcase_18 AC 43 ms
37,040 KB
testcase_19 AC 43 ms
37,048 KB
testcase_20 AC 42 ms
36,904 KB
testcase_21 AC 43 ms
37,108 KB
testcase_22 AC 43 ms
36,916 KB
testcase_23 AC 43 ms
36,912 KB
testcase_24 AC 43 ms
36,996 KB
testcase_25 AC 43 ms
36,944 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