結果

問題 No.601 Midpoint Erase
ユーザー roarisroaris
提出日時 2019-12-08 12:03:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 75,964 KB
最終ジャッジ日時 2024-06-09 12:34:41
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,784 KB
testcase_01 AC 31 ms
52,468 KB
testcase_02 AC 31 ms
52,288 KB
testcase_03 AC 74 ms
75,160 KB
testcase_04 AC 68 ms
75,348 KB
testcase_05 AC 66 ms
75,756 KB
testcase_06 AC 58 ms
75,948 KB
testcase_07 AC 67 ms
75,068 KB
testcase_08 AC 63 ms
75,964 KB
testcase_09 AC 68 ms
75,756 KB
testcase_10 AC 50 ms
69,976 KB
testcase_11 AC 73 ms
75,088 KB
testcase_12 AC 62 ms
75,812 KB
testcase_13 AC 34 ms
52,308 KB
testcase_14 AC 31 ms
52,556 KB
testcase_15 AC 34 ms
51,940 KB
testcase_16 AC 32 ms
52,752 KB
testcase_17 AC 31 ms
52,560 KB
testcase_18 AC 34 ms
52,480 KB
testcase_19 AC 31 ms
52,280 KB
testcase_20 AC 30 ms
53,748 KB
testcase_21 AC 31 ms
51,940 KB
testcase_22 AC 30 ms
52,328 KB
testcase_23 AC 30 ms
53,500 KB
testcase_24 AC 29 ms
52,956 KB
testcase_25 AC 30 ms
53,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
ee, eo, oe, oo = 0, 0, 0, 0

for _ in range(N):
    xi, yi = map(int, input().split())
    
    if xi%2==0 and yi%2==0:
        ee += 1
    elif xi%2==0 and yi%2==1:
        eo += 1
    elif xi%2==1 and yi%2==0:
        oe += 1
    elif xi%2==1 and yi%2==1:
        oo += 1

p = ee//2+eo//2+oe//2+oo//2

if p%2==0:
    print('Bob')
else:
    print('Alice')
0