結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 166 ms
19,072 KB
testcase_15 AC 124 ms
16,640 KB
testcase_16 AC 58 ms
12,928 KB
testcase_17 AC 823 ms
50,700 KB
testcase_18 AC 74 ms
13,952 KB
testcase_19 AC 62 ms
13,184 KB
testcase_20 AC 163 ms
18,816 KB
testcase_21 AC 380 ms
29,576 KB
testcase_22 AC 230 ms
22,144 KB
testcase_23 AC 252 ms
23,296 KB
testcase_24 AC 1,722 ms
86,352 KB
testcase_25 AC 1,670 ms
87,120 KB
testcase_26 AC 1,652 ms
87,112 KB
testcase_27 AC 1,715 ms
87,248 KB
testcase_28 AC 1,683 ms
87,224 KB
testcase_29 AC 1,700 ms
87,348 KB
testcase_30 AC 1,695 ms
87,224 KB
testcase_31 AC 1,682 ms
87,120 KB
testcase_32 AC 1,706 ms
87,120 KB
testcase_33 AC 1,683 ms
87,124 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 30 ms
10,880 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))

LIST.sort()
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