結果

問題 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,737 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 10,836 KB
実行使用メモリ 84,596 KB
最終ジャッジ日時 2023-09-28 17:12:15
合計ジャッジ時間 21,358 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,848 KB
testcase_01 AC 16 ms
7,808 KB
testcase_02 AC 17 ms
7,804 KB
testcase_03 AC 17 ms
7,820 KB
testcase_04 AC 16 ms
7,836 KB
testcase_05 AC 17 ms
7,768 KB
testcase_06 AC 17 ms
7,796 KB
testcase_07 AC 17 ms
7,924 KB
testcase_08 AC 16 ms
7,756 KB
testcase_09 AC 16 ms
7,756 KB
testcase_10 AC 16 ms
7,952 KB
testcase_11 AC 16 ms
7,840 KB
testcase_12 AC 17 ms
7,792 KB
testcase_13 AC 17 ms
7,804 KB
testcase_14 AC 155 ms
16,436 KB
testcase_15 AC 117 ms
13,888 KB
testcase_16 AC 48 ms
10,208 KB
testcase_17 AC 834 ms
47,860 KB
testcase_18 AC 66 ms
11,140 KB
testcase_19 AC 52 ms
10,388 KB
testcase_20 AC 153 ms
16,192 KB
testcase_21 AC 375 ms
26,944 KB
testcase_22 AC 205 ms
19,548 KB
testcase_23 AC 236 ms
20,604 KB
testcase_24 AC 1,695 ms
83,636 KB
testcase_25 AC 1,724 ms
84,544 KB
testcase_26 AC 1,737 ms
84,556 KB
testcase_27 AC 1,713 ms
84,428 KB
testcase_28 AC 1,637 ms
84,596 KB
testcase_29 AC 1,714 ms
84,528 KB
testcase_30 AC 1,654 ms
84,524 KB
testcase_31 AC 1,654 ms
84,408 KB
testcase_32 AC 1,673 ms
84,500 KB
testcase_33 AC 1,724 ms
84,500 KB
testcase_34 AC 17 ms
7,800 KB
testcase_35 AC 16 ms
7,816 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