結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2020-10-23 23:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,831 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 119,176 KB
最終ジャッジ日時 2024-07-21 13:45:41
合計ジャッジ時間 22,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
53,872 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 47 ms
53,504 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 45 ms
54,144 KB
testcase_10 AC 43 ms
53,888 KB
testcase_11 AC 43 ms
53,632 KB
testcase_12 AC 43 ms
54,272 KB
testcase_13 AC 44 ms
53,504 KB
testcase_14 AC 176 ms
72,704 KB
testcase_15 AC 147 ms
70,528 KB
testcase_16 AC 83 ms
65,664 KB
testcase_17 AC 824 ms
91,800 KB
testcase_18 AC 102 ms
67,072 KB
testcase_19 AC 88 ms
65,664 KB
testcase_20 AC 175 ms
72,064 KB
testcase_21 AC 424 ms
89,620 KB
testcase_22 AC 225 ms
75,236 KB
testcase_23 AC 247 ms
76,544 KB
testcase_24 AC 1,800 ms
117,252 KB
testcase_25 AC 1,794 ms
118,512 KB
testcase_26 AC 1,806 ms
119,176 KB
testcase_27 AC 1,810 ms
118,376 KB
testcase_28 AC 1,806 ms
118,720 KB
testcase_29 AC 1,831 ms
118,912 KB
testcase_30 AC 1,767 ms
119,028 KB
testcase_31 AC 1,772 ms
118,540 KB
testcase_32 AC 1,812 ms
118,400 KB
testcase_33 AC 1,758 ms
118,400 KB
testcase_34 AC 43 ms
54,016 KB
testcase_35 AC 43 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys

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

def main():
    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)

main()
0