結果

問題 No.601 Midpoint Erase
コンテスト
ユーザー daku9640
提出日時 2017-12-02 05:05:30
言語 Python3
(3.14.2 + numpy 2.4.0 + scipy 1.16.3)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 303 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-23 03:25:14
合計ジャッジ時間 4,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
from collections import defaultdict
from itertools import combinations
readline = sys.stdin.readline
N = int(input())
m = defaultdict(int)
for _ in range(N):
    x, y = map(int, input().split())
    m[(x & 1, y & 1)] += 1
print("Bob" if sum(i // 2 for i in m.values()) % 2 == 0 else "Alice")
0