結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 179 ms
74,112 KB
testcase_15 AC 138 ms
70,016 KB
testcase_16 AC 77 ms
63,744 KB
testcase_17 AC 750 ms
101,628 KB
testcase_18 AC 95 ms
66,432 KB
testcase_19 AC 82 ms
64,256 KB
testcase_20 AC 175 ms
73,856 KB
testcase_21 AC 388 ms
94,592 KB
testcase_22 AC 220 ms
77,696 KB
testcase_23 AC 238 ms
78,976 KB
testcase_24 AC 1,616 ms
129,932 KB
testcase_25 AC 1,597 ms
130,908 KB
testcase_26 AC 1,573 ms
131,824 KB
testcase_27 AC 1,563 ms
131,080 KB
testcase_28 AC 1,582 ms
131,844 KB
testcase_29 AC 1,640 ms
132,056 KB
testcase_30 AC 1,614 ms
131,716 KB
testcase_31 AC 1,576 ms
130,932 KB
testcase_32 AC 1,600 ms
131,208 KB
testcase_33 AC 1,568 ms
130,956 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[list(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