結果

問題 No.601 Midpoint Erase
ユーザー daku9640daku9640
提出日時 2017-12-01 22:46:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-05-05 21:24:43
合計ジャッジ時間 4,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from math import gcd
N = int(input())
li = tuple(tuple(map(int, input().split())) for a in range(N))
cnt = 0
for i in range(N - 1):
    for j in range(i + 1, N):
        if gcd(abs(li[i][0] - li[j][0]), abs(li[i][1] - li[j][1])) != 1:
            cnt += 1
            break
print("Bob" if cnt % 2 == 0 else "Alice")
0