結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2020-10-23 23:33:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,859 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 140,360 KB
最終ジャッジ日時 2024-07-21 13:29:42
合計ジャッジ時間 23,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
53,504 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 50 ms
53,888 KB
testcase_07 AC 46 ms
53,504 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 46 ms
53,504 KB
testcase_10 AC 45 ms
53,760 KB
testcase_11 AC 46 ms
53,760 KB
testcase_12 AC 46 ms
53,888 KB
testcase_13 AC 48 ms
53,760 KB
testcase_14 AC 198 ms
74,112 KB
testcase_15 AC 157 ms
71,296 KB
testcase_16 AC 94 ms
65,920 KB
testcase_17 AC 812 ms
91,748 KB
testcase_18 AC 114 ms
68,096 KB
testcase_19 AC 97 ms
66,432 KB
testcase_20 AC 193 ms
74,112 KB
testcase_21 AC 415 ms
89,088 KB
testcase_22 AC 277 ms
87,424 KB
testcase_23 AC 282 ms
88,192 KB
testcase_24 AC 1,835 ms
138,944 KB
testcase_25 AC 1,850 ms
139,584 KB
testcase_26 AC 1,815 ms
139,976 KB
testcase_27 AC 1,844 ms
139,212 KB
testcase_28 AC 1,829 ms
140,360 KB
testcase_29 AC 1,859 ms
139,888 KB
testcase_30 AC 1,836 ms
140,096 KB
testcase_31 AC 1,832 ms
139,976 KB
testcase_32 AC 1,851 ms
139,336 KB
testcase_33 AC 1,850 ms
139,828 KB
testcase_34 AC 45 ms
54,272 KB
testcase_35 AC 43 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def dist(P,Q):
    a,b=P[0]-Q[0],P[1]-Q[1]
    return a*a+b*b

N=int(input())
P=[0]*N

for i in range(N):
    P[i]=tuple(map(int,input().split()))

Q=[0]*(N*(N-1)//2)
k=0
for i in range(N):
    for j in range(i+1,N):
        Q[k]=(dist(P[i],P[j]),j,i)
        k+=1

Q.sort()
Q=deque(Q)
Flag=[True for _ in range(N)]

X=0
while Q:
    (_,j,i)=Q.popleft()

    if not(Flag[i] and Flag[j]):
        continue

    Flag[j]=False
    if i!=0:
        Flag[i]=False
    if i==0:
        X+=1
print(X)
0