結果

問題 No.1265 Balloon Survival
ユーザー MineMine
提出日時 2020-12-03 23:41:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,900 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 118,628 KB
最終ジャッジ日時 2024-09-14 09:06:32
合計ジャッジ時間 23,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 191 ms
22,784 KB
testcase_15 AC 137 ms
19,328 KB
testcase_16 AC 65 ms
13,824 KB
testcase_17 AC 923 ms
67,176 KB
testcase_18 AC 84 ms
15,232 KB
testcase_19 AC 70 ms
14,080 KB
testcase_20 AC 184 ms
22,400 KB
testcase_21 AC 415 ms
37,600 KB
testcase_22 AC 249 ms
27,008 KB
testcase_23 AC 271 ms
28,672 KB
testcase_24 AC 1,881 ms
117,760 KB
testcase_25 AC 1,864 ms
118,528 KB
testcase_26 AC 1,861 ms
118,504 KB
testcase_27 AC 1,899 ms
118,528 KB
testcase_28 AC 1,886 ms
118,500 KB
testcase_29 AC 1,895 ms
118,628 KB
testcase_30 AC 1,899 ms
118,628 KB
testcase_31 AC 1,870 ms
118,528 KB
testcase_32 AC 1,900 ms
118,400 KB
testcase_33 AC 1,842 ms
118,528 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,752 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()

cnt = 0
used = [False]*n

for i, x in d:
    if used[x[0]] or used[x[1]]:
        continue
    if x[0] == 0:
        cnt += 1
        used[x[1]] = True
    else:
        used[x[0]] = True
        used[x[1]] = True

print(cnt)

0