結果

問題 No.601 Midpoint Erase
ユーザー daku9640daku9640
提出日時 2017-12-02 05:46:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-06-02 08:22:50
合計ジャッジ時間 2,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,996 KB
testcase_01 AC 33 ms
55,516 KB
testcase_02 AC 33 ms
54,532 KB
testcase_03 AC 56 ms
76,180 KB
testcase_04 AC 60 ms
77,004 KB
testcase_05 AC 54 ms
76,104 KB
testcase_06 AC 52 ms
76,084 KB
testcase_07 AC 58 ms
76,596 KB
testcase_08 AC 59 ms
76,212 KB
testcase_09 AC 59 ms
76,264 KB
testcase_10 AC 44 ms
69,972 KB
testcase_11 AC 66 ms
76,444 KB
testcase_12 AC 53 ms
75,800 KB
testcase_13 AC 34 ms
54,692 KB
testcase_14 AC 34 ms
53,676 KB
testcase_15 AC 33 ms
53,828 KB
testcase_16 AC 34 ms
53,828 KB
testcase_17 AC 32 ms
54,312 KB
testcase_18 AC 34 ms
54,160 KB
testcase_19 AC 34 ms
54,684 KB
testcase_20 AC 34 ms
53,568 KB
testcase_21 AC 33 ms
54,552 KB
testcase_22 AC 33 ms
53,916 KB
testcase_23 AC 35 ms
53,536 KB
testcase_24 AC 33 ms
54,180 KB
testcase_25 AC 36 ms
54,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
readline = sys.stdin.readline
N = int(readline())
g = [0] * 4
for _ in [0] * N:
    x, y = map(int, readline().split())
    g[(x & 1) << 1 ^ (y & 1)] += 1
print("Alice" if sum(i // 2 for i in g) & 1 else "Bob")
0