結果

問題 No.1265 Balloon Survival
ユーザー c-yanc-yan
提出日時 2020-10-23 22:49:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,877 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,368 KB
最終ジャッジ日時 2024-07-21 11:53:08
合計ジャッジ時間 22,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 34 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 188 ms
18,816 KB
testcase_15 AC 138 ms
16,384 KB
testcase_16 AC 63 ms
12,544 KB
testcase_17 AC 890 ms
50,460 KB
testcase_18 AC 82 ms
13,568 KB
testcase_19 AC 67 ms
12,800 KB
testcase_20 AC 179 ms
18,688 KB
testcase_21 AC 403 ms
29,348 KB
testcase_22 AC 243 ms
22,016 KB
testcase_23 AC 272 ms
23,040 KB
testcase_24 AC 1,865 ms
86,496 KB
testcase_25 AC 1,874 ms
86,884 KB
testcase_26 AC 1,831 ms
87,172 KB
testcase_27 AC 1,825 ms
86,884 KB
testcase_28 AC 1,851 ms
87,112 KB
testcase_29 AC 1,810 ms
87,368 KB
testcase_30 AC 1,852 ms
87,132 KB
testcase_31 AC 1,801 ms
87,208 KB
testcase_32 AC 1,863 ms
87,140 KB
testcase_33 AC 1,877 ms
86,884 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
xy = [tuple(map(int, input().split())) for _ in range(N)]

a = []
for i in range(N - 1):
    for j in range(i + 1, N):
        d = (xy[i][0] - xy[j][0]) * (xy[i][0] - xy[j][0]) + (xy[i][1] - xy[j][1]) * (xy[i][1] - xy[j][1])
        a.append((d, i, j))
a.sort()

result = 0
t = set()
for _, i, j in a:
    if i in t or j in t:
        continue
    if i == 0:
        result += 1
        t.add(j)
    else:
        t.add(i)
        t.add(j)
print(result)
0