結果

問題 No.1265 Balloon Survival
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:28:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,764 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 132,364 KB
最終ジャッジ日時 2024-06-13 01:58:54
合計ジャッジ時間 21,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
51,456 KB
testcase_14 AC 185 ms
74,496 KB
testcase_15 AC 145 ms
70,528 KB
testcase_16 AC 80 ms
64,000 KB
testcase_17 AC 812 ms
101,684 KB
testcase_18 AC 100 ms
66,432 KB
testcase_19 AC 87 ms
64,128 KB
testcase_20 AC 186 ms
74,240 KB
testcase_21 AC 405 ms
94,336 KB
testcase_22 AC 234 ms
77,824 KB
testcase_23 AC 257 ms
79,104 KB
testcase_24 AC 1,714 ms
130,132 KB
testcase_25 AC 1,753 ms
131,348 KB
testcase_26 AC 1,741 ms
132,248 KB
testcase_27 AC 1,764 ms
131,468 KB
testcase_28 AC 1,716 ms
132,364 KB
testcase_29 AC 1,758 ms
132,240 KB
testcase_30 AC 1,713 ms
131,988 KB
testcase_31 AC 1,712 ms
131,216 KB
testcase_32 AC 1,731 ms
131,596 KB
testcase_33 AC 1,698 ms
131,348 KB
testcase_34 AC 41 ms
51,712 KB
testcase_35 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[tuple(map(int,input().split())) for _ in range(n)]
a=[]
for i in range(n):
    for j in range(i+1,n):
        d=(p[i][0]-p[j][0])**2+(p[i][1]-p[j][1])**2
        a.append((d,i,j))
a.sort()
ans=0
t=set()
for dst,i,j in a:
    if i in t or j in t:
        continue
    if i==0:
        ans+=1
        t.add(j)
    else:
        t.add(i)
        t.add(j)
print(ans)
0