結果

問題 No.1265 Balloon Survival
ユーザー tyawanmusityawanmusi
提出日時 2020-10-23 22:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,712 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 139,236 KB
最終ジャッジ日時 2024-07-21 12:03:06
合計ジャッジ時間 20,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 39 ms
52,200 KB
testcase_14 AC 179 ms
83,584 KB
testcase_15 AC 139 ms
82,304 KB
testcase_16 AC 72 ms
69,248 KB
testcase_17 AC 771 ms
105,624 KB
testcase_18 AC 89 ms
74,752 KB
testcase_19 AC 76 ms
70,272 KB
testcase_20 AC 168 ms
83,712 KB
testcase_21 AC 353 ms
93,424 KB
testcase_22 AC 214 ms
83,584 KB
testcase_23 AC 243 ms
87,040 KB
testcase_24 AC 1,619 ms
137,488 KB
testcase_25 AC 1,614 ms
138,512 KB
testcase_26 AC 1,607 ms
139,108 KB
testcase_27 AC 1,628 ms
138,736 KB
testcase_28 AC 1,639 ms
139,236 KB
testcase_29 AC 1,639 ms
138,976 KB
testcase_30 AC 1,624 ms
139,180 KB
testcase_31 AC 1,611 ms
138,468 KB
testcase_32 AC 1,712 ms
138,704 KB
testcase_33 AC 1,614 ms
138,640 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda:sys.stdin.readline().rstrip()

n=int(input())
xy=[tuple(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)*1000000+i*1000+j)
e.sort()
used=[0]*n
ans=0
for x in e:
  _,x=divmod(x,1000000)
  i,j=divmod(x,1000)
  if used[i]+used[j]:
    continue
  if i==0:
    used[j]=1
    ans+=1
  else:
    used[i]=used[j]=1
print(ans)
0