結果

問題 No.601 Midpoint Erase
ユーザー konabekonabe
提出日時 2017-12-08 02:39:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 300,416 KB
最終ジャッジ日時 2024-11-29 05:43:19
合計ジャッジ時間 32,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
xys = [list(map(int, input().split())) for n in range(N)]
middles = [ [(p1[0] + p2[0])//2, (p1[1] + p2[1])//2]
            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]
if len(middles) % 2 == 0:
    print("Bob")
else:
    print("Alice")
0