結果

問題 No.601 Midpoint Erase
ユーザー htkbhtkb
提出日時 2018-05-19 13:18:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,468 KB
最終ジャッジ日時 2024-06-28 14:22:24
合計ジャッジ時間 4,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 257 ms
23,440 KB
testcase_04 AC 299 ms
25,256 KB
testcase_05 AC 221 ms
20,840 KB
testcase_06 AC 131 ms
16,352 KB
testcase_07 AC 275 ms
24,304 KB
testcase_08 AC 242 ms
22,368 KB
testcase_09 AC 284 ms
24,636 KB
testcase_10 AC 85 ms
13,696 KB
testcase_11 AC 410 ms
30,468 KB
testcase_12 AC 192 ms
19,604 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = [list(map(int, input().split())) for _ in [0]*N]
odd, even = [], []
for n, m in a:
    if n%2:
        odd.append(m)
    else:
        even.append(m)
pair = [[0, 0], [0, 0]]
for _a, p in zip((odd, even), pair):
    for n in _a:
        if n%2:
            p[0] += 1
        else:
            p[1] += 1
total = pair[0][0]//2 + pair[0][1]//2 + pair[1][0]//2 + pair[1][1]//2
print("Alice" if total%2 else "Bob")
0