結果

問題 No.1265 Balloon Survival
ユーザー titiatitia
提出日時 2020-10-23 22:49:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,196 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,964 KB
最終ジャッジ日時 2024-07-21 11:53:26
合計ジャッジ時間 15,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 136 ms
19,640 KB
testcase_15 AC 104 ms
17,152 KB
testcase_16 AC 56 ms
12,928 KB
testcase_17 AC 590 ms
54,172 KB
testcase_18 AC 70 ms
14,080 KB
testcase_19 AC 59 ms
13,312 KB
testcase_20 AC 137 ms
19,688 KB
testcase_21 AC 279 ms
30,980 KB
testcase_22 AC 174 ms
23,080 KB
testcase_23 AC 192 ms
24,428 KB
testcase_24 AC 1,189 ms
92,328 KB
testcase_25 AC 1,196 ms
93,964 KB
testcase_26 AC 1,186 ms
93,912 KB
testcase_27 AC 1,174 ms
93,864 KB
testcase_28 AC 1,158 ms
93,820 KB
testcase_29 AC 1,178 ms
93,856 KB
testcase_30 AC 1,182 ms
93,856 KB
testcase_31 AC 1,185 ms
93,924 KB
testcase_32 AC 1,175 ms
93,876 KB
testcase_33 AC 1,160 ms
93,920 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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

from operator import itemgetter
LIST.sort(key=itemgetter(0))
ANS=0
USE=[0]*N

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

        
0