結果

問題 No.601 Midpoint Erase
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-04 11:15:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 76,540 KB
最終ジャッジ日時 2024-06-30 16:23:29
合計ジャッジ時間 3,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,408 KB
testcase_01 AC 38 ms
53,216 KB
testcase_02 AC 37 ms
52,456 KB
testcase_03 AC 100 ms
75,912 KB
testcase_04 AC 105 ms
76,424 KB
testcase_05 AC 96 ms
76,192 KB
testcase_06 AC 83 ms
76,508 KB
testcase_07 AC 104 ms
76,528 KB
testcase_08 AC 98 ms
76,384 KB
testcase_09 AC 103 ms
76,540 KB
testcase_10 AC 77 ms
76,124 KB
testcase_11 AC 118 ms
76,496 KB
testcase_12 AC 93 ms
76,340 KB
testcase_13 AC 37 ms
52,576 KB
testcase_14 AC 37 ms
52,252 KB
testcase_15 AC 37 ms
52,796 KB
testcase_16 AC 37 ms
52,792 KB
testcase_17 AC 36 ms
52,572 KB
testcase_18 AC 38 ms
52,572 KB
testcase_19 AC 38 ms
53,728 KB
testcase_20 AC 37 ms
52,592 KB
testcase_21 AC 37 ms
53,356 KB
testcase_22 AC 39 ms
53,552 KB
testcase_23 AC 38 ms
52,580 KB
testcase_24 AC 37 ms
52,312 KB
testcase_25 AC 38 ms
53,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
XY = []
ee = 0
eo = 0
oe = 0
oo = 0
for i in range(n):
    x, y = map(int, input().split())
    if x%2 == 0 and y%2 == 0:
        ee += 1
    elif x%2 == 0 and y%2 == 1:
        eo += 1
    elif x%2 == 1 and y%2 == 0:
        oe += 1
    else:
        oo += 1
c = ee//2+eo//2+oe//2+oo//2
if c%2 == 1:
    print('Alice')
else:
    print('Bob')
0