結果

問題 No.1265 Balloon Survival
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,973 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,008 KB
最終ジャッジ日時 2024-06-13 02:12:54
合計ジャッジ時間 23,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 49 ms
52,096 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 43 ms
52,352 KB
testcase_11 AC 43 ms
52,224 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 194 ms
75,008 KB
testcase_15 AC 150 ms
71,040 KB
testcase_16 AC 84 ms
64,128 KB
testcase_17 AC 815 ms
101,708 KB
testcase_18 AC 106 ms
66,944 KB
testcase_19 AC 89 ms
64,128 KB
testcase_20 AC 190 ms
75,008 KB
testcase_21 AC 426 ms
94,668 KB
testcase_22 AC 240 ms
78,336 KB
testcase_23 AC 267 ms
79,744 KB
testcase_24 AC 1,773 ms
130,832 KB
testcase_25 AC 1,793 ms
131,716 KB
testcase_26 AC 1,812 ms
132,356 KB
testcase_27 AC 1,766 ms
131,596 KB
testcase_28 AC 1,973 ms
132,616 KB
testcase_29 AC 1,815 ms
132,496 KB
testcase_30 AC 1,815 ms
133,008 KB
testcase_31 AC 1,756 ms
132,108 KB
testcase_32 AC 1,816 ms
131,464 KB
testcase_33 AC 1,751 ms
131,720 KB
testcase_34 AC 43 ms
52,736 KB
testcase_35 AC 42 ms
52,096 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
used=[False]*n
for dst,i,j in a:
    if i==0:
        if not used[j]:
            ans+=1
            used[j]=True
    elif not used[j] and not used[i]:
        used[i]=used[j]=True
print(ans)
0