結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 186 ms
73,856 KB
testcase_15 AC 147 ms
70,144 KB
testcase_16 AC 81 ms
63,872 KB
testcase_17 AC 808 ms
102,468 KB
testcase_18 AC 103 ms
65,920 KB
testcase_19 AC 85 ms
63,872 KB
testcase_20 AC 183 ms
74,368 KB
testcase_21 AC 430 ms
97,152 KB
testcase_22 AC 237 ms
77,184 KB
testcase_23 AC 260 ms
78,848 KB
testcase_24 AC 1,740 ms
132,116 KB
testcase_25 AC 1,749 ms
132,880 KB
testcase_26 AC 1,758 ms
133,256 KB
testcase_27 AC 1,772 ms
133,136 KB
testcase_28 AC 1,781 ms
133,272 KB
testcase_29 AC 1,782 ms
133,144 KB
testcase_30 AC 1,823 ms
133,264 KB
testcase_31 AC 1,738 ms
132,884 KB
testcase_32 AC 1,787 ms
133,008 KB
testcase_33 AC 1,741 ms
133,144 KB
testcase_34 AC 42 ms
52,608 KB
testcase_35 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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