結果

問題 No.1265 Balloon Survival
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-23 23:21:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,725 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 87,372 KB
最終ジャッジ日時 2024-07-21 13:15:42
合計ジャッジ時間 20,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 174 ms
19,072 KB
testcase_15 AC 129 ms
16,640 KB
testcase_16 AC 61 ms
12,928 KB
testcase_17 AC 826 ms
50,724 KB
testcase_18 AC 81 ms
13,824 KB
testcase_19 AC 65 ms
13,056 KB
testcase_20 AC 164 ms
18,944 KB
testcase_21 AC 387 ms
29,604 KB
testcase_22 AC 219 ms
22,144 KB
testcase_23 AC 257 ms
23,296 KB
testcase_24 AC 1,656 ms
86,376 KB
testcase_25 AC 1,725 ms
87,140 KB
testcase_26 AC 1,644 ms
87,248 KB
testcase_27 AC 1,614 ms
87,136 KB
testcase_28 AC 1,579 ms
87,252 KB
testcase_29 AC 1,667 ms
87,248 KB
testcase_30 AC 1,629 ms
87,372 KB
testcase_31 AC 1,709 ms
87,140 KB
testcase_32 AC 1,599 ms
87,140 KB
testcase_33 AC 1,636 ms
87,140 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n = int(input())
xy = [tuple(map(int,input().split())) for i in range(n)]

l = []
for i in range(n-1):
    for j in range(i+1,n):
        dis = (xy[i][0]-xy[j][0])**2+(xy[i][1]-xy[j][1])**2
        l.append((dis,i,j))

ans = 0
count = [1]*n
l.sort()
su = n
for dis,i,j in l:
    if count[i] == 0 or count[j] == 0:
        continue
    if i != 0:
        count[i] -= 1
        count[j] -= 1
        su -= 2
    if i == 0:
        ans += 1
        count[j] -= 1
        su -= 1
    if su == 1:
        print(ans)
        exit()
print(ans)
0