結果

問題 No.1265 Balloon Survival
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-20 10:04:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,788 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 136,876 KB
最終ジャッジ日時 2024-09-17 11:52:19
合計ジャッジ時間 21,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,824 KB
testcase_01 AC 36 ms
52,964 KB
testcase_02 AC 38 ms
52,700 KB
testcase_03 AC 38 ms
52,472 KB
testcase_04 AC 37 ms
52,812 KB
testcase_05 AC 35 ms
53,420 KB
testcase_06 AC 36 ms
53,352 KB
testcase_07 AC 38 ms
52,436 KB
testcase_08 AC 34 ms
53,072 KB
testcase_09 AC 33 ms
52,352 KB
testcase_10 AC 34 ms
52,748 KB
testcase_11 AC 34 ms
52,860 KB
testcase_12 AC 35 ms
54,016 KB
testcase_13 AC 36 ms
52,648 KB
testcase_14 AC 185 ms
84,780 KB
testcase_15 AC 144 ms
82,316 KB
testcase_16 AC 70 ms
71,532 KB
testcase_17 AC 893 ms
111,552 KB
testcase_18 AC 99 ms
78,480 KB
testcase_19 AC 76 ms
72,276 KB
testcase_20 AC 178 ms
84,572 KB
testcase_21 AC 385 ms
95,836 KB
testcase_22 AC 236 ms
87,908 KB
testcase_23 AC 273 ms
89,428 KB
testcase_24 AC 1,772 ms
136,620 KB
testcase_25 AC 1,716 ms
136,660 KB
testcase_26 AC 1,788 ms
136,480 KB
testcase_27 AC 1,731 ms
136,876 KB
testcase_28 AC 1,782 ms
136,472 KB
testcase_29 AC 1,731 ms
136,412 KB
testcase_30 AC 1,727 ms
136,540 KB
testcase_31 AC 1,725 ms
136,644 KB
testcase_32 AC 1,753 ms
136,612 KB
testcase_33 AC 1,715 ms
136,696 KB
testcase_34 AC 35 ms
53,088 KB
testcase_35 AC 35 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[list(map(int,input().split())) for _ in range(n)]
ary=[]
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
    ary.append([d,i,j])
ary.sort()
ans=0
mi=set(range(n))
for d,i,j in ary:
  if i in mi and j in mi:
    if i!=0 and j!=0:
      mi.discard(i)
      mi.discard(j)
    else:
      ans+=1
      if j!=0:
        mi.discard(j)
      else:
        mi.discard(i)
print(ans)

0