結果

問題 No.1265 Balloon Survival
ユーザー proriboneproribone
提出日時 2020-10-23 22:43:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-07-21 11:43:41
合計ジャッジ時間 6,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 46 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 44 ms
52,864 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 43 ms
52,992 KB
testcase_08 WA -
testcase_09 AC 42 ms
52,736 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 49 ms
60,240 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N=int(input())
point=[tuple(map(int,input().split())) for _ in range(N)]

d=set()
res=0
for i in range(1,N):
    que=[]
    heapify(que)
    for j in range(N):
        if i==j:
            continue
        xi,yi=point[i]
        xj,yj=point[j]
        dist=((xi-xj)**2+(yi-yj)**2)**0.5
        heappush(que,(dist,j))
    while(que[0][1] in d):
        heappop(que)
    if que[0][1]==0:
        d.add(i)
        res+=1
print(res)
0