結果

問題 No.1265 Balloon Survival
ユーザー tyawanmusityawanmusi
提出日時 2020-10-23 22:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,841 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 132,400 KB
最終ジャッジ日時 2024-07-21 11:57:11
合計ジャッジ時間 22,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,072 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 182 ms
73,728 KB
testcase_15 AC 142 ms
70,144 KB
testcase_16 AC 76 ms
63,872 KB
testcase_17 AC 933 ms
101,968 KB
testcase_18 AC 100 ms
66,176 KB
testcase_19 AC 82 ms
64,512 KB
testcase_20 AC 179 ms
74,240 KB
testcase_21 AC 423 ms
94,720 KB
testcase_22 AC 224 ms
77,056 KB
testcase_23 AC 248 ms
78,720 KB
testcase_24 AC 1,752 ms
130,388 KB
testcase_25 AC 1,779 ms
131,564 KB
testcase_26 AC 1,764 ms
132,400 KB
testcase_27 AC 1,758 ms
131,492 KB
testcase_28 AC 1,760 ms
132,308 KB
testcase_29 AC 1,841 ms
132,232 KB
testcase_30 AC 1,773 ms
132,056 KB
testcase_31 AC 1,757 ms
131,544 KB
testcase_32 AC 1,828 ms
131,412 KB
testcase_33 AC 1,764 ms
131,204 KB
testcase_34 AC 40 ms
52,480 KB
testcase_35 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[list(map(int,input().split()))for _ in range(n)]
e=[]
for i in range(n-1):
  for j in range(i+1,n):
    x1,y1=xy[i]
    x2,y2=xy[j]
    e.append(((x1-x2)**2+(y1-y2)**2,i,j))
e.sort()
used=[0]*n
ans=0
for _,i,j in e:
  if used[i]+used[j]:
    continue
  if i==0:
    used[j]=1
    ans+=1
  else:
    used[i]=used[j]=1
print(ans)
0