結果

問題 No.601 Midpoint Erase
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-16 06:00:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-05-10 03:34:18
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,296 KB
testcase_01 AC 50 ms
55,680 KB
testcase_02 AC 51 ms
55,168 KB
testcase_03 AC 121 ms
81,792 KB
testcase_04 AC 125 ms
81,920 KB
testcase_05 AC 109 ms
80,512 KB
testcase_06 AC 92 ms
77,952 KB
testcase_07 AC 124 ms
82,048 KB
testcase_08 AC 118 ms
81,792 KB
testcase_09 AC 111 ms
81,920 KB
testcase_10 AC 81 ms
78,080 KB
testcase_11 AC 138 ms
85,760 KB
testcase_12 AC 99 ms
80,128 KB
testcase_13 AC 48 ms
55,552 KB
testcase_14 AC 48 ms
55,552 KB
testcase_15 AC 49 ms
55,168 KB
testcase_16 AC 48 ms
55,424 KB
testcase_17 AC 47 ms
55,552 KB
testcase_18 AC 48 ms
55,168 KB
testcase_19 AC 48 ms
55,424 KB
testcase_20 AC 47 ms
55,552 KB
testcase_21 AC 48 ms
55,680 KB
testcase_22 AC 48 ms
55,680 KB
testcase_23 AC 49 ms
55,296 KB
testcase_24 AC 49 ms
55,808 KB
testcase_25 AC 48 ms
55,680 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