結果

問題 No.1265 Balloon Survival
ユーザー proriboneproribone
提出日時 2020-10-23 23:24:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 170,536 KB
最終ジャッジ日時 2024-07-21 13:22:06
合計ジャッジ時間 29,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,248 KB
testcase_01 AC 40 ms
54,460 KB
testcase_02 AC 41 ms
54,924 KB
testcase_03 AC 40 ms
54,688 KB
testcase_04 AC 39 ms
55,552 KB
testcase_05 AC 46 ms
60,984 KB
testcase_06 AC 41 ms
55,484 KB
testcase_07 WA -
testcase_08 AC 41 ms
54,684 KB
testcase_09 AC 40 ms
54,676 KB
testcase_10 AC 40 ms
55,676 KB
testcase_11 WA -
testcase_12 AC 43 ms
60,004 KB
testcase_13 AC 41 ms
54,704 KB
testcase_14 AC 242 ms
88,948 KB
testcase_15 AC 182 ms
86,044 KB
testcase_16 AC 92 ms
75,720 KB
testcase_17 AC 1,129 ms
122,196 KB
testcase_18 AC 118 ms
78,344 KB
testcase_19 AC 97 ms
75,732 KB
testcase_20 AC 237 ms
88,888 KB
testcase_21 AC 517 ms
103,772 KB
testcase_22 AC 304 ms
90,084 KB
testcase_23 AC 343 ms
91,804 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 45 ms
61,676 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil,sqrt
from random import randrange

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

d=set()
res=0

G=[]
for i in range(N):
    que=[]
    for j in range(N):
        if i==j:
            continue
        xi,yi=point[i]
        xj,yj=point[j]
        dist=sqrt((xi-xj)**2+(yi-yj)**2)
        d.add((ceil(dist)//2,min(i,j),max(i,j)))
d=sorted(d)

delete=set()

for t,i,j in d:
    if i in delete or j in delete:
        continue
    if i!=0 and j!=0:
        delete.add(i)
        delete.add(j)
    elif i==0:
        delete.add(j)
        res+=1
    elif j==0:
        delete.add(i)
        res+=1
print(res)
0