結果

問題 No.1265 Balloon Survival
ユーザー MineMine
提出日時 2020-12-03 23:38:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 571 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 118,652 KB
最終ジャッジ日時 2024-09-14 09:03:33
合計ジャッジ時間 25,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 205 ms
22,784 KB
testcase_15 AC 147 ms
19,328 KB
testcase_16 AC 66 ms
13,824 KB
testcase_17 AC 1,001 ms
67,196 KB
testcase_18 AC 85 ms
15,360 KB
testcase_19 AC 71 ms
14,208 KB
testcase_20 AC 197 ms
22,656 KB
testcase_21 AC 451 ms
37,748 KB
testcase_22 AC 265 ms
26,988 KB
testcase_23 AC 289 ms
28,896 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def distance(X, Y):
    return abs(X[0] - Y[0])**2 + abs(X[1] - Y[1])**2

n = int(input())
xy = [list(map(int, input().split())) for _ in range(n)]
d = []

for i in range(n):
    for g in range(i+1, n):
        d.append((distance(xy[i], xy[g]), (i, g)))
d.sort()

delete = set()
exploded = set()
cnt = 0
used = [False]*n

for i, x in d:
    if (x[0] in delete) or (x[1] in delete) or (x[0] in exploded) or (x[1] in exploded):
        continue
    if x[0] == 0:
        delete.add(x[1])
    else:
        exploded.add(x[0])
        exploded.add(x[1])
print(len(delete))


0