結果

問題 No.1265 Balloon Survival
ユーザー sotanishysotanishy
提出日時 2020-10-23 22:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,305 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,764 KB
最終ジャッジ日時 2024-07-21 11:09:58
合計ジャッジ時間 16,750 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 43 ms
51,712 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 139 ms
75,904 KB
testcase_15 AC 110 ms
71,424 KB
testcase_16 AC 64 ms
64,512 KB
testcase_17 AC 618 ms
117,152 KB
testcase_18 AC 77 ms
67,072 KB
testcase_19 AC 67 ms
64,896 KB
testcase_20 AC 130 ms
75,776 KB
testcase_21 AC 273 ms
97,024 KB
testcase_22 AC 167 ms
79,844 KB
testcase_23 AC 210 ms
91,776 KB
testcase_24 AC 1,260 ms
151,564 KB
testcase_25 AC 1,266 ms
151,316 KB
testcase_26 AC 1,232 ms
151,304 KB
testcase_27 AC 1,262 ms
151,564 KB
testcase_28 AC 1,276 ms
151,764 KB
testcase_29 AC 1,305 ms
151,668 KB
testcase_30 AC 1,285 ms
151,316 KB
testcase_31 AC 1,246 ms
151,464 KB
testcase_32 AC 1,296 ms
151,316 KB
testcase_33 AC 1,266 ms
151,492 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def dist(a, b):
    return (a[0] - b[0])**2 + (a[1] - b[1])**2

N = int(input())
pts = [tuple(map(int, input().split())) for _ in range(N)]
edges = []
for i in range(N - 1):
    for j in range(i + 1, N):
        edges.append((dist(pts[i], pts[j]), i, j))
edges.sort(key=lambda x: x[0])
removed = [False] * N
ans = 0
for _, i, j in edges:
    if removed[i] or removed[j]:
        continue
    if i == 0:
        removed[j] = True
        ans += 1
    else:
        removed[i] = removed[j] = True
print(ans)
0