結果

問題 No.601 Midpoint Erase
ユーザー konabekonabe
提出日時 2017-12-08 02:19:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,104 KB
最終ジャッジ日時 2024-11-29 05:37:52
合計ジャッジ時間 32,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
xys = [list(map(int, input().split())) for n in range(N)]
deleted = []
used = []
for i, p1 in enumerate(xys):
    for p2 in xys[i+1:]:
        if p1[0] + p2[0] % 2 == 0 and p1[1] + p2[1] % 2 == 0:
            middle = [(p1[0] + p2[0])//2, (p1[1] + p2[1])//2]
            if not(middle in deleted) and not(p2 in used ) and not(p1 in used):
                deleted.append(middle)
                used.append(p1)
                used.append(p2)
if len(deleted) % 2 == 0:
    print("Bob")
else:
    print("Alice")
0