結果

問題 No.601 Midpoint Erase
ユーザー 👑 KazunKazun
提出日時 2021-01-04 16:20:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 76,516 KB
最終ジャッジ日時 2024-10-15 01:56:59
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,072 KB
testcase_01 AC 35 ms
52,804 KB
testcase_02 AC 34 ms
52,616 KB
testcase_03 AC 108 ms
76,156 KB
testcase_04 AC 102 ms
76,400 KB
testcase_05 AC 92 ms
76,516 KB
testcase_06 AC 84 ms
76,364 KB
testcase_07 AC 102 ms
76,436 KB
testcase_08 AC 98 ms
76,136 KB
testcase_09 AC 108 ms
76,356 KB
testcase_10 AC 74 ms
76,112 KB
testcase_11 AC 125 ms
76,192 KB
testcase_12 AC 92 ms
76,236 KB
testcase_13 AC 34 ms
52,264 KB
testcase_14 AC 37 ms
53,100 KB
testcase_15 AC 35 ms
52,560 KB
testcase_16 AC 36 ms
53,944 KB
testcase_17 AC 36 ms
52,000 KB
testcase_18 AC 37 ms
52,340 KB
testcase_19 AC 35 ms
54,308 KB
testcase_20 AC 34 ms
52,456 KB
testcase_21 AC 34 ms
52,612 KB
testcase_22 AC 37 ms
53,980 KB
testcase_23 AC 36 ms
52,412 KB
testcase_24 AC 36 ms
53,056 KB
testcase_25 AC 37 ms
53,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D={(a,b):0 for a in [0,1] for b in [0,1]}

for _ in range(N):
    x,y=map(int,input().split())
    x%=2
    y%=2
    D[(x,y)]+=1

T=sum([p//2 for p in D.values()])

if T%2:
    print("Alice")
else:
    print("Bob")
0