結果

問題 No.601 Midpoint Erase
ユーザー daku9640daku9640
提出日時 2017-12-02 04:01:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 586 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 271,036 KB
最終ジャッジ日時 2024-05-06 00:53:20
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
from itertools import combinations
readline = sys.stdin.readline
f = lambda x, y: (True if (x[0] - y[0]) % 2 == 0 and (x[0] - y[0]) not in (-1, 0, 1) and
                          (x[1] - y[1]) % 2 == 0 and (x[1] - y[1]) not in (-1, 0, 1) else False)
N = int(input())
li = tuple(tuple(map(int, readline().split())) for _ in range(N))
MAP = defaultdict(set)
LIST = []
for x, y in ((i, j) for i, j in combinations(li, 2) if f(i, j)):
    MAP[x].add(y)
    MAP[y].add(x)
    LIST.append({x, y})
print("Bob" if len(list) % 2 == 0 else "Alice")
0