結果

問題 No.1265 Balloon Survival
ユーザー titiatitia
提出日時 2020-10-23 22:47:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 87,224 KB
最終ジャッジ日時 2024-07-21 11:50:14
合計ジャッジ時間 21,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 31 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 35 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 131 ms
16,512 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,611 ms
87,096 KB
testcase_29 WA -
testcase_30 AC 1,644 ms
87,096 KB
testcase_31 AC 1,632 ms
87,112 KB
testcase_32 AC 1,653 ms
86,992 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LIST=[]

for i in range(N):
    x,y=F[i]
    for j in range(i+1,N):
        z,w=F[j]

        LIST.append(((x-z)**2+(y-w)**2,i,j))

LIST.sort()
ANS=0
USE=[0]*N

for d,i,j in LIST:
    if USE[i]==1 or USE[j]==1:
        continue
    if i==1:
        ANS+=1
        USE[j]=1
    else:
        USE[i]=1
        USE[j]=1
        
print(ANS)

        
0