結果

問題 No.601 Midpoint Erase
ユーザー yumechiyumechi
提出日時 2017-12-01 23:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-02 08:21:26
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 139 ms
81,664 KB
testcase_04 AC 143 ms
82,108 KB
testcase_05 AC 118 ms
80,512 KB
testcase_06 AC 94 ms
78,080 KB
testcase_07 AC 132 ms
81,664 KB
testcase_08 AC 126 ms
80,744 KB
testcase_09 AC 127 ms
81,660 KB
testcase_10 AC 80 ms
76,800 KB
testcase_11 AC 161 ms
84,352 KB
testcase_12 AC 111 ms
79,284 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 33 ms
51,584 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 33 ms
52,224 KB
testcase_18 AC 35 ms
52,352 KB
testcase_19 AC 34 ms
52,480 KB
testcase_20 AC 36 ms
52,736 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 36 ms
52,224 KB
testcase_23 AC 34 ms
52,608 KB
testcase_24 AC 36 ms
52,224 KB
testcase_25 AC 36 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
al = [tuple(int(i) for i in input().split()) for _ in range(n)]

cnt = [0]*4
for a in al:
    if a[0] % 2 == 0 and a[1] % 2 == 0:
         cnt[0] += 1
    if a[0] % 2 == 1 and a[1] % 2 == 0:
         cnt[1] += 1
    if a[0] % 2 == 0 and a[1] % 2 == 1:
         cnt[2] += 1
    if a[0] % 2 == 1 and a[1] % 2 == 1:
         cnt[3] += 1

ans = sum(map(lambda x: x//2, cnt))
print("Alice" if ans % 2 == 1 else "Bob")
0