結果

問題 No.1265 Balloon Survival
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-23 22:33:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,840 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 87,288 KB
最終ジャッジ日時 2024-07-21 11:22:37
合計ジャッジ時間 22,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 165 ms
18,944 KB
testcase_15 AC 127 ms
16,640 KB
testcase_16 AC 59 ms
12,672 KB
testcase_17 AC 795 ms
50,624 KB
testcase_18 AC 81 ms
13,696 KB
testcase_19 AC 64 ms
12,928 KB
testcase_20 AC 169 ms
18,816 KB
testcase_21 AC 374 ms
29,620 KB
testcase_22 AC 226 ms
22,016 KB
testcase_23 AC 250 ms
23,260 KB
testcase_24 AC 1,661 ms
86,288 KB
testcase_25 AC 1,654 ms
87,056 KB
testcase_26 AC 1,624 ms
87,156 KB
testcase_27 AC 1,643 ms
87,180 KB
testcase_28 AC 1,613 ms
87,160 KB
testcase_29 AC 1,648 ms
87,164 KB
testcase_30 AC 1,626 ms
87,288 KB
testcase_31 AC 1,840 ms
87,188 KB
testcase_32 AC 1,832 ms
87,188 KB
testcase_33 AC 1,665 ms
87,056 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [list(map(int, input().split())) for i in range(n)]
l = []
for i in range(n):
    for j in range(i + 1, n):
        l.append(((xy[i][0] - xy[j][0]) ** 2 + (xy[i][1] - xy[j][1]) ** 2, i, j))
visited = [False] * n
l.sort()
ans = 0
for d, i, j in l:
    if i == 0:
        if not visited[j]:
            ans += 1
            visited[j] = True
    else:
        if not visited[i] and not visited[j]:
            visited[i] = True
            visited[j] = True
print(ans)
0