結果

問題 No.1265 Balloon Survival
ユーザー timitimi
提出日時 2020-12-18 15:10:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,734 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2024-09-21 09:09:37
合計ジャッジ時間 20,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 164 ms
18,432 KB
testcase_15 AC 127 ms
16,512 KB
testcase_16 AC 62 ms
13,056 KB
testcase_17 AC 777 ms
45,428 KB
testcase_18 AC 83 ms
13,952 KB
testcase_19 AC 68 ms
13,184 KB
testcase_20 AC 160 ms
18,432 KB
testcase_21 AC 359 ms
27,476 KB
testcase_22 AC 218 ms
21,248 KB
testcase_23 AC 235 ms
22,232 KB
testcase_24 AC 1,621 ms
75,396 KB
testcase_25 AC 1,693 ms
76,428 KB
testcase_26 AC 1,655 ms
76,412 KB
testcase_27 AC 1,658 ms
76,292 KB
testcase_28 AC 1,640 ms
76,536 KB
testcase_29 AC 1,616 ms
76,400 KB
testcase_30 AC 1,630 ms
76,404 KB
testcase_31 AC 1,734 ms
76,164 KB
testcase_32 AC 1,672 ms
76,292 KB
testcase_33 AC 1,614 ms
76,292 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
N=int(input())
A=[]
for i in range(N):
  x,y=map(int, input().split())
  A.append((x,y,i))
B=[]
for i in range(N-1):
  for j in range(i+1,N):
    ax,ay,an=A[i][0],A[i][1],A[i][2]
    bx,by,bn=A[j][0],A[j][1],A[j][2]
    d=(ax-bx)**2+(ay-by)**2
    B.append((d,an,bn))
B=sorted(B)
ans=0
D=[1]*N
for i in range(len(B)):
  na,nb=B[i][1],B[i][2]
  if D[na]==1 and D[nb]==1:
    if na==0:
      ans+=1
      D[nb]=0
    else:
      D[na]=0
      D[nb]=0
print(ans)
0