結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2020-10-23 23:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,909 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 143,552 KB
最終ジャッジ日時 2024-07-21 13:41:40
合計ジャッジ時間 22,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,004 KB
testcase_01 AC 44 ms
54,372 KB
testcase_02 AC 41 ms
54,592 KB
testcase_03 AC 41 ms
54,404 KB
testcase_04 AC 41 ms
54,508 KB
testcase_05 AC 46 ms
53,792 KB
testcase_06 AC 41 ms
55,580 KB
testcase_07 AC 43 ms
55,068 KB
testcase_08 AC 44 ms
54,360 KB
testcase_09 AC 42 ms
54,512 KB
testcase_10 AC 42 ms
54,632 KB
testcase_11 AC 42 ms
54,616 KB
testcase_12 AC 44 ms
54,620 KB
testcase_13 AC 42 ms
54,064 KB
testcase_14 AC 177 ms
74,128 KB
testcase_15 AC 137 ms
71,060 KB
testcase_16 AC 80 ms
66,292 KB
testcase_17 AC 815 ms
93,588 KB
testcase_18 AC 96 ms
68,156 KB
testcase_19 AC 82 ms
65,876 KB
testcase_20 AC 171 ms
74,884 KB
testcase_21 AC 413 ms
91,364 KB
testcase_22 AC 217 ms
75,736 KB
testcase_23 AC 239 ms
77,140 KB
testcase_24 AC 1,816 ms
141,520 KB
testcase_25 AC 1,825 ms
142,688 KB
testcase_26 AC 1,823 ms
143,552 KB
testcase_27 AC 1,871 ms
142,400 KB
testcase_28 AC 1,810 ms
142,912 KB
testcase_29 AC 1,866 ms
143,312 KB
testcase_30 AC 1,852 ms
143,448 KB
testcase_31 AC 1,851 ms
142,792 KB
testcase_32 AC 1,909 ms
142,556 KB
testcase_33 AC 1,829 ms
142,552 KB
testcase_34 AC 43 ms
55,368 KB
testcase_35 AC 42 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input=sys.stdin.readline

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
    else:
        X+=1
print(X)
0