結果

問題 No.601 Midpoint Erase
ユーザー Meso MesoMeso Meso
提出日時 2024-12-19 19:54:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-19 19:54:38
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 246 ms
10,624 KB
testcase_04 AC 267 ms
10,880 KB
testcase_05 AC 198 ms
10,752 KB
testcase_06 AC 126 ms
10,752 KB
testcase_07 AC 267 ms
10,752 KB
testcase_08 AC 223 ms
10,752 KB
testcase_09 AC 256 ms
10,752 KB
testcase_10 AC 80 ms
10,752 KB
testcase_11 AC 359 ms
10,752 KB
testcase_12 AC 185 ms
10,880 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

xx = xy = yx = yy = 0

for i in range(n):
    x, y = map(int, input().split())
    if x % 2 == 0 and y % 2 == 0:
        xx += 1
    if x % 2 == 0 and y % 2 == 1:
        xy += 1
    if x % 2 == 1 and y % 2 == 0:
        yx += 1
    if x % 2 == 1 and y % 2 == 1:
        yy += 1

if (xx // 2 + xy // 2 + yx // 2 + yy // 2) % 2 == 1:
    print("Alice")
else:
    print("Bob")
0