結果

問題 No.1265 Balloon Survival
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-23 23:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,847 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 133,828 KB
最終ジャッジ日時 2024-07-21 13:10:59
合計ジャッジ時間 22,635 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 180 ms
73,472 KB
testcase_15 AC 137 ms
70,016 KB
testcase_16 AC 76 ms
63,616 KB
testcase_17 AC 823 ms
102,200 KB
testcase_18 AC 95 ms
66,176 KB
testcase_19 AC 79 ms
63,872 KB
testcase_20 AC 172 ms
73,216 KB
testcase_21 AC 428 ms
97,604 KB
testcase_22 AC 222 ms
77,184 KB
testcase_23 AC 248 ms
77,952 KB
testcase_24 AC 1,791 ms
131,676 KB
testcase_25 AC 1,801 ms
132,940 KB
testcase_26 AC 1,818 ms
133,828 KB
testcase_27 AC 1,847 ms
132,744 KB
testcase_28 AC 1,847 ms
133,388 KB
testcase_29 AC 1,842 ms
133,748 KB
testcase_30 AC 1,847 ms
133,828 KB
testcase_31 AC 1,815 ms
132,524 KB
testcase_32 AC 1,792 ms
132,644 KB
testcase_33 AC 1,762 ms
132,736 KB
testcase_34 AC 40 ms
52,096 KB
testcase_35 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

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