結果

問題 No.1265 Balloon Survival
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-20 10:10:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,992 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 136,964 KB
最終ジャッジ日時 2024-09-17 11:57:12
合計ジャッジ時間 11,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,024 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 208 ms
84,884 KB
testcase_15 AC 159 ms
82,176 KB
testcase_16 AC 78 ms
70,400 KB
testcase_17 AC 934 ms
111,460 KB
testcase_18 AC 107 ms
79,104 KB
testcase_19 AC 83 ms
71,680 KB
testcase_20 AC 199 ms
84,608 KB
testcase_21 AC 427 ms
96,256 KB
testcase_22 AC 257 ms
87,680 KB
testcase_23 AC 277 ms
89,384 KB
testcase_24 AC 1,959 ms
136,312 KB
testcase_25 AC 1,952 ms
136,964 KB
testcase_26 AC 1,952 ms
136,632 KB
testcase_27 AC 1,927 ms
136,684 KB
testcase_28 AC 1,960 ms
136,712 KB
testcase_29 AC 1,953 ms
136,692 KB
testcase_30 AC 1,992 ms
136,572 KB
testcase_31 AC 1,944 ms
136,752 KB
testcase_32 AC 1,971 ms
136,508 KB
testcase_33 AC 1,944 ms
136,632 KB
testcase_34 AC 40 ms
54,408 KB
testcase_35 AC 37 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[list(map(int,input().split())) for _ in range(n)]
ary=[]
#mat=[[0]*n for i in range(n)]
for i in range(n):
  xi,yi=xy[i]
  for j in range(i):
    xj,yj=xy[j]
    d=(xi-xj)**2+(yi-yj)**2
    #mat[i][j]=d
    #mat[j][i]=d
    ary.append([d,i,j])
ary.sort()
ans=0
seen=[0]*n
for d,i,j in ary:
  if seen[i]==0 and seen[j]==0:
    seen[i]=1
    seen[j]=1
    if i==0 or j==0:
      ans+=1
      seen[0]=0

print(ans)

0