結果

問題 No.601 Midpoint Erase
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-16 06:00:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 85,876 KB
最終ジャッジ日時 2024-12-18 00:25:45
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,136 KB
testcase_01 AC 46 ms
55,860 KB
testcase_02 AC 46 ms
57,144 KB
testcase_03 AC 104 ms
81,672 KB
testcase_04 AC 110 ms
81,996 KB
testcase_05 AC 93 ms
80,232 KB
testcase_06 AC 78 ms
77,964 KB
testcase_07 AC 105 ms
82,028 KB
testcase_08 AC 100 ms
82,104 KB
testcase_09 AC 106 ms
81,792 KB
testcase_10 AC 73 ms
77,560 KB
testcase_11 AC 133 ms
85,876 KB
testcase_12 AC 92 ms
79,724 KB
testcase_13 AC 47 ms
56,560 KB
testcase_14 AC 44 ms
55,612 KB
testcase_15 AC 46 ms
55,432 KB
testcase_16 AC 46 ms
56,296 KB
testcase_17 AC 46 ms
55,920 KB
testcase_18 AC 48 ms
56,656 KB
testcase_19 AC 44 ms
56,064 KB
testcase_20 AC 46 ms
56,788 KB
testcase_21 AC 47 ms
56,696 KB
testcase_22 AC 46 ms
55,760 KB
testcase_23 AC 46 ms
56,144 KB
testcase_24 AC 46 ms
57,200 KB
testcase_25 AC 46 ms
56,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math

input = sys.stdin.readline

N = int(input())
XY = [tuple(map(int,input().split())) for _ in range(N)]

M = [(x%2,y%2) for x,y in XY]
C = Counter(M)
ans = 0
for v in C.values():
    ans += v//2
if ans%2==0:
    print('Bob')
else:
    print('Alice')
0