結果

問題 No.1265 Balloon Survival
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-23 23:19:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 136,052 KB
最終ジャッジ日時 2024-07-21 13:13:25
合計ジャッジ時間 22,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,920 KB
testcase_01 AC 36 ms
53,224 KB
testcase_02 AC 37 ms
52,328 KB
testcase_03 AC 37 ms
53,620 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 37 ms
54,452 KB
testcase_06 AC 37 ms
53,212 KB
testcase_07 AC 36 ms
53,304 KB
testcase_08 AC 37 ms
52,788 KB
testcase_09 AC 36 ms
52,796 KB
testcase_10 AC 37 ms
52,828 KB
testcase_11 AC 37 ms
52,460 KB
testcase_12 AC 37 ms
53,860 KB
testcase_13 AC 35 ms
53,292 KB
testcase_14 AC 172 ms
74,316 KB
testcase_15 AC 131 ms
70,016 KB
testcase_16 AC 71 ms
64,128 KB
testcase_17 AC 783 ms
102,900 KB
testcase_18 AC 90 ms
66,944 KB
testcase_19 AC 76 ms
64,896 KB
testcase_20 AC 167 ms
73,600 KB
testcase_21 AC 419 ms
97,536 KB
testcase_22 AC 214 ms
77,568 KB
testcase_23 AC 230 ms
78,464 KB
testcase_24 AC 1,709 ms
133,808 KB
testcase_25 AC 1,759 ms
134,972 KB
testcase_26 AC 1,729 ms
136,052 KB
testcase_27 AC 1,707 ms
135,532 KB
testcase_28 AC 1,734 ms
135,936 KB
testcase_29 AC 1,780 ms
135,780 KB
testcase_30 AC 1,756 ms
135,896 KB
testcase_31 AC 1,775 ms
135,040 KB
testcase_32 AC 1,742 ms
135,112 KB
testcase_33 AC 1,748 ms
134,808 KB
testcase_34 AC 36 ms
52,224 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n = int(input())
xy = [list(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)**0.5
        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