結果

問題 No.1265 Balloon Survival
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,586 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 133,492 KB
最終ジャッジ日時 2024-06-13 02:21:57
合計ジャッジ時間 19,586 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,864 KB
testcase_01 AC 36 ms
52,948 KB
testcase_02 AC 39 ms
52,452 KB
testcase_03 AC 39 ms
54,000 KB
testcase_04 AC 39 ms
53,680 KB
testcase_05 AC 39 ms
52,140 KB
testcase_06 AC 39 ms
52,356 KB
testcase_07 AC 39 ms
52,504 KB
testcase_08 AC 38 ms
51,984 KB
testcase_09 AC 35 ms
53,092 KB
testcase_10 AC 35 ms
52,296 KB
testcase_11 AC 39 ms
52,304 KB
testcase_12 AC 36 ms
52,288 KB
testcase_13 AC 38 ms
52,544 KB
testcase_14 AC 161 ms
73,628 KB
testcase_15 AC 121 ms
70,604 KB
testcase_16 AC 71 ms
64,200 KB
testcase_17 AC 802 ms
102,168 KB
testcase_18 AC 84 ms
67,136 KB
testcase_19 AC 73 ms
64,832 KB
testcase_20 AC 154 ms
73,488 KB
testcase_21 AC 356 ms
97,256 KB
testcase_22 AC 205 ms
77,436 KB
testcase_23 AC 227 ms
78,184 KB
testcase_24 AC 1,575 ms
131,216 KB
testcase_25 AC 1,527 ms
132,048 KB
testcase_26 AC 1,522 ms
132,964 KB
testcase_27 AC 1,509 ms
132,528 KB
testcase_28 AC 1,519 ms
133,260 KB
testcase_29 AC 1,540 ms
133,016 KB
testcase_30 AC 1,477 ms
133,492 KB
testcase_31 AC 1,532 ms
132,532 KB
testcase_32 AC 1,586 ms
132,668 KB
testcase_33 AC 1,513 ms
132,280 KB
testcase_34 AC 35 ms
52,900 KB
testcase_35 AC 36 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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