結果

問題 No.601 Midpoint Erase
ユーザー ああいいああいい
提出日時 2022-05-19 13:33:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 76,372 KB
最終ジャッジ日時 2024-09-17 19:40:32
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,940 KB
testcase_01 AC 32 ms
53,296 KB
testcase_02 AC 30 ms
52,496 KB
testcase_03 AC 79 ms
76,044 KB
testcase_04 AC 82 ms
76,372 KB
testcase_05 AC 74 ms
76,112 KB
testcase_06 AC 74 ms
75,780 KB
testcase_07 AC 84 ms
76,004 KB
testcase_08 AC 78 ms
76,220 KB
testcase_09 AC 90 ms
76,240 KB
testcase_10 AC 68 ms
76,156 KB
testcase_11 AC 101 ms
76,092 KB
testcase_12 AC 78 ms
75,976 KB
testcase_13 AC 35 ms
52,332 KB
testcase_14 AC 36 ms
52,272 KB
testcase_15 AC 34 ms
53,188 KB
testcase_16 AC 35 ms
52,244 KB
testcase_17 AC 31 ms
52,244 KB
testcase_18 AC 32 ms
53,156 KB
testcase_19 AC 32 ms
53,284 KB
testcase_20 AC 32 ms
52,824 KB
testcase_21 AC 31 ms
52,900 KB
testcase_22 AC 31 ms
52,196 KB
testcase_23 AC 32 ms
53,500 KB
testcase_24 AC 36 ms
53,024 KB
testcase_25 AC 34 ms
52,064 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