結果

問題 No.601 Midpoint Erase
ユーザー Mcpu3Mcpu3
提出日時 2018-10-21 13:26:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 860 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 65,852 KB
最終ジャッジ日時 2024-11-19 03:22:49
合計ジャッジ時間 12,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,076 KB
testcase_01 AC 142 ms
54,140 KB
testcase_02 AC 131 ms
53,784 KB
testcase_03 AC 697 ms
60,584 KB
testcase_04 AC 730 ms
61,800 KB
testcase_05 AC 695 ms
59,228 KB
testcase_06 AC 517 ms
59,196 KB
testcase_07 AC 730 ms
61,516 KB
testcase_08 AC 648 ms
59,476 KB
testcase_09 AC 742 ms
61,004 KB
testcase_10 AC 457 ms
59,100 KB
testcase_11 AC 860 ms
65,852 KB
testcase_12 AC 633 ms
59,200 KB
testcase_13 AC 133 ms
54,736 KB
testcase_14 AC 135 ms
53,992 KB
testcase_15 AC 136 ms
53,792 KB
testcase_16 AC 143 ms
53,992 KB
testcase_17 AC 132 ms
53,984 KB
testcase_18 AC 142 ms
54,044 KB
testcase_19 AC 145 ms
54,176 KB
testcase_20 AC 147 ms
54,188 KB
testcase_21 AC 149 ms
54,036 KB
testcase_22 AC 142 ms
54,300 KB
testcase_23 AC 138 ms
54,380 KB
testcase_24 AC 142 ms
54,048 KB
testcase_25 AC 146 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), x, y, sum = 0, tmp[] = new int[4];
		for (int i = 0; i < N; ++i) {
			x = sc.nextInt();
			y = sc.nextInt();
			if (x % 2 == 0 && y % 2 == 0) ++tmp[0];
			else if (x % 2 == 0 && y % 2 == 1) ++tmp[1];
			else if (x % 2 == 1 && y % 2 == 0) ++tmp[2];
			else ++tmp[3];
		}
		sc.close();
		for (int i = 0; i < 4; ++i) sum += tmp[i] / 2;
		if (sum % 2 == 0) System.out.print("Bob");
		else System.out.print("Alice");
	}
}
0