結果

問題 No.1265 Balloon Survival
ユーザー uni_pythonuni_python
提出日時 2020-11-01 22:38:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,904 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 133,552 KB
最終ジャッジ日時 2024-07-22 05:54:45
合計ジャッジ時間 22,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 46 ms
51,840 KB
testcase_09 AC 44 ms
51,712 KB
testcase_10 AC 43 ms
51,968 KB
testcase_11 AC 44 ms
51,876 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 41 ms
51,748 KB
testcase_14 AC 191 ms
73,728 KB
testcase_15 AC 149 ms
70,144 KB
testcase_16 AC 82 ms
63,232 KB
testcase_17 AC 841 ms
102,680 KB
testcase_18 AC 102 ms
66,176 KB
testcase_19 AC 88 ms
63,872 KB
testcase_20 AC 187 ms
73,088 KB
testcase_21 AC 437 ms
97,468 KB
testcase_22 AC 237 ms
77,056 KB
testcase_23 AC 260 ms
78,340 KB
testcase_24 AC 1,803 ms
132,320 KB
testcase_25 AC 1,711 ms
133,252 KB
testcase_26 AC 1,804 ms
133,168 KB
testcase_27 AC 1,831 ms
133,552 KB
testcase_28 AC 1,834 ms
133,344 KB
testcase_29 AC 1,904 ms
133,472 KB
testcase_30 AC 1,817 ms
133,224 KB
testcase_31 AC 1,826 ms
133,476 KB
testcase_32 AC 1,879 ms
133,476 KB
testcase_33 AC 1,826 ms
133,216 KB
testcase_34 AC 42 ms
52,700 KB
testcase_35 AC 40 ms
51,712 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()))



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()

for aaa in L:
    _,i,j=aaa
    if i==0:
        if used[j]==0:
            ans+=1
            used[j]=1
    if used[i]==0 and used[j]==0:
        used[i]=1
        used[j]=1
        
print(ans)
0