結果

問題 No.601 Midpoint Erase
ユーザー mlihua09mlihua09
提出日時 2020-09-22 15:36:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 86,476 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2023-09-08 11:35:51
合計ジャッジ時間 5,964 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,232 KB
testcase_01 AC 77 ms
71,128 KB
testcase_02 AC 73 ms
71,488 KB
testcase_03 AC 136 ms
77,172 KB
testcase_04 AC 141 ms
77,456 KB
testcase_05 AC 128 ms
77,248 KB
testcase_06 AC 117 ms
77,320 KB
testcase_07 AC 139 ms
77,192 KB
testcase_08 AC 132 ms
77,188 KB
testcase_09 AC 138 ms
77,224 KB
testcase_10 AC 111 ms
77,092 KB
testcase_11 AC 154 ms
77,464 KB
testcase_12 AC 124 ms
77,492 KB
testcase_13 AC 71 ms
71,324 KB
testcase_14 AC 73 ms
71,520 KB
testcase_15 AC 73 ms
71,148 KB
testcase_16 AC 73 ms
71,176 KB
testcase_17 AC 72 ms
71,300 KB
testcase_18 AC 74 ms
71,320 KB
testcase_19 AC 78 ms
71,300 KB
testcase_20 AC 74 ms
71,220 KB
testcase_21 AC 73 ms
71,344 KB
testcase_22 AC 78 ms
71,404 KB
testcase_23 AC 72 ms
71,516 KB
testcase_24 AC 72 ms
71,344 KB
testcase_25 AC 73 ms
71,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

XY = [0] * 4

for i in range(N):
    x, y = list(map(int, input().split()))
    
    XY[(x % 2) * 2 + y % 2] += 1
    
if sum([i // 2 for i in XY]) % 2:
    
    print('Alice')
    
else:
    
    print('Bob')
0