結果

問題 No.1265 Balloon Survival
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,793 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,696 KB
最終ジャッジ日時 2024-06-13 02:00:34
合計ジャッジ時間 21,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
52,124 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 41 ms
51,584 KB
testcase_14 AC 176 ms
74,624 KB
testcase_15 AC 134 ms
70,400 KB
testcase_16 AC 78 ms
64,000 KB
testcase_17 AC 744 ms
101,396 KB
testcase_18 AC 95 ms
66,816 KB
testcase_19 AC 88 ms
64,256 KB
testcase_20 AC 182 ms
74,240 KB
testcase_21 AC 372 ms
94,208 KB
testcase_22 AC 214 ms
78,336 KB
testcase_23 AC 237 ms
79,232 KB
testcase_24 AC 1,575 ms
130,468 KB
testcase_25 AC 1,793 ms
131,412 KB
testcase_26 AC 1,630 ms
132,696 KB
testcase_27 AC 1,648 ms
130,984 KB
testcase_28 AC 1,609 ms
132,312 KB
testcase_29 AC 1,612 ms
132,444 KB
testcase_30 AC 1,566 ms
132,188 KB
testcase_31 AC 1,583 ms
131,292 KB
testcase_32 AC 1,667 ms
131,292 KB
testcase_33 AC 1,572 ms
131,100 KB
testcase_34 AC 38 ms
51,968 KB
testcase_35 AC 37 ms
51,584 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