結果

問題 No.1265 Balloon Survival
ユーザー uni_pythonuni_python
提出日時 2020-11-01 22:50:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,605 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 134,188 KB
最終ジャッジ日時 2024-07-22 05:57:47
合計ジャッジ時間 19,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,280 KB
testcase_01 AC 36 ms
52,828 KB
testcase_02 AC 35 ms
52,420 KB
testcase_03 AC 36 ms
52,236 KB
testcase_04 AC 36 ms
53,560 KB
testcase_05 AC 37 ms
52,840 KB
testcase_06 AC 36 ms
53,028 KB
testcase_07 AC 37 ms
52,792 KB
testcase_08 AC 35 ms
52,488 KB
testcase_09 AC 34 ms
52,396 KB
testcase_10 AC 38 ms
52,952 KB
testcase_11 AC 35 ms
52,884 KB
testcase_12 AC 35 ms
51,936 KB
testcase_13 AC 36 ms
53,092 KB
testcase_14 AC 149 ms
71,956 KB
testcase_15 AC 117 ms
69,340 KB
testcase_16 AC 68 ms
63,708 KB
testcase_17 AC 714 ms
101,676 KB
testcase_18 AC 81 ms
66,868 KB
testcase_19 AC 70 ms
64,472 KB
testcase_20 AC 151 ms
71,660 KB
testcase_21 AC 338 ms
96,648 KB
testcase_22 AC 195 ms
75,688 KB
testcase_23 AC 212 ms
77,784 KB
testcase_24 AC 1,505 ms
133,916 KB
testcase_25 AC 1,550 ms
133,516 KB
testcase_26 AC 1,516 ms
133,724 KB
testcase_27 AC 1,511 ms
134,176 KB
testcase_28 AC 1,532 ms
133,976 KB
testcase_29 AC 1,605 ms
133,784 KB
testcase_30 AC 1,588 ms
134,188 KB
testcase_31 AC 1,532 ms
133,992 KB
testcase_32 AC 1,563 ms
134,028 KB
testcase_33 AC 1,532 ms
133,916 KB
testcase_34 AC 36 ms
52,400 KB
testcase_35 AC 35 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))


def main():
    N=I()

    if N==1:
        print(0)
        exit()
    if N==2:
        print(1)
        exit()

    X=[0]*N
    Y=[0]*N
    for i in range(N):
        X[i],Y[i]=MI()

    # 取り除いた or 消えた
    used=[0]*N

    L=[]

    for i in range(N):
        for j in range(i+1,N):
            d=(X[i]-X[j])**2 + (Y[i]-Y[j])**2
            L.append((d,i,j))

    ans=0
    L.sort()
    S=0

    for aaa in L:
        _,i,j=aaa
        if i==0:
            if used[j]==0:
                ans+=1
                used[j]=1
                S+=1
        if used[i]==0 and used[j]==0:
            used[i]=1
            used[j]=1
            S+=2
        if S==N-1:
            break
            
    print(ans)
main()
0