結果

問題 No.601 Midpoint Erase
ユーザー tentententen
提出日時 2020-10-14 09:13:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 820 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 5,007 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-20 19:00:38
合計ジャッジ時間 13,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,516 KB
testcase_01 AC 148 ms
41,372 KB
testcase_02 AC 122 ms
41,040 KB
testcase_03 AC 680 ms
49,272 KB
testcase_04 AC 742 ms
50,984 KB
testcase_05 AC 615 ms
47,840 KB
testcase_06 AC 532 ms
47,940 KB
testcase_07 AC 677 ms
51,188 KB
testcase_08 AC 658 ms
48,108 KB
testcase_09 AC 700 ms
50,860 KB
testcase_10 AC 437 ms
47,700 KB
testcase_11 AC 820 ms
54,144 KB
testcase_12 AC 518 ms
47,456 KB
testcase_13 AC 132 ms
41,004 KB
testcase_14 AC 128 ms
41,080 KB
testcase_15 AC 134 ms
41,116 KB
testcase_16 AC 137 ms
41,192 KB
testcase_17 AC 115 ms
39,780 KB
testcase_18 AC 143 ms
41,316 KB
testcase_19 AC 139 ms
41,300 KB
testcase_20 AC 137 ms
41,220 KB
testcase_21 AC 134 ms
41,360 KB
testcase_22 AC 144 ms
41,260 KB
testcase_23 AC 133 ms
41,348 KB
testcase_24 AC 135 ms
41,120 KB
testcase_25 AC 137 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] counts = new int[4];
    	for (int i = 0; i < n; i++) {
    	    counts[sc.nextInt() % 2 + sc.nextInt() % 2 * 2]++;
    	}
    	int sum = 0;
    	for (int x : counts) {
    	    sum += x / 2;
    	}
    	if (sum % 2 == 0) {
    	    System.out.println("Bob");
    	} else {
    	    System.out.println("Alice");
    	}
	}
}
0