結果

問題 No.601 Midpoint Erase
ユーザー ああいいああいい
提出日時 2022-05-19 13:33:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 75,748 KB
最終ジャッジ日時 2023-10-17 22:27:22
合計ジャッジ時間 3,641 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,372 KB
testcase_01 AC 38 ms
53,372 KB
testcase_02 AC 38 ms
53,372 KB
testcase_03 AC 95 ms
75,748 KB
testcase_04 AC 104 ms
75,744 KB
testcase_05 AC 90 ms
75,748 KB
testcase_06 AC 80 ms
75,744 KB
testcase_07 AC 97 ms
75,748 KB
testcase_08 AC 92 ms
75,748 KB
testcase_09 AC 99 ms
75,744 KB
testcase_10 AC 73 ms
75,744 KB
testcase_11 AC 113 ms
75,748 KB
testcase_12 AC 88 ms
75,744 KB
testcase_13 AC 38 ms
53,372 KB
testcase_14 AC 37 ms
53,372 KB
testcase_15 AC 38 ms
53,372 KB
testcase_16 AC 38 ms
53,372 KB
testcase_17 AC 38 ms
53,372 KB
testcase_18 AC 38 ms
53,372 KB
testcase_19 AC 38 ms
53,372 KB
testcase_20 AC 38 ms
53,372 KB
testcase_21 AC 38 ms
53,372 KB
testcase_22 AC 37 ms
53,372 KB
testcase_23 AC 37 ms
53,372 KB
testcase_24 AC 37 ms
53,372 KB
testcase_25 AC 38 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

dat = [[0] * 2 for _ in range(2)]
for _ in range(N):
    x,y = map(int,input().split())
    dat[x % 2][y % 2] += 1
count = 0
for i in range(2):
    for j in range(2):
        count += dat[i][j] // 2
a = "Alice"
b = "Bob"
if count % 2 == 0:
    print(b)
else:
    print(a)
0