結果

問題 No.1265 Balloon Survival
ユーザー ntudantuda
提出日時 2022-03-12 09:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,704 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 151,952 KB
最終ジャッジ日時 2024-09-16 15:21:34
合計ジャッジ時間 20,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 175 ms
74,496 KB
testcase_15 AC 142 ms
71,040 KB
testcase_16 AC 77 ms
63,616 KB
testcase_17 AC 780 ms
101,472 KB
testcase_18 AC 101 ms
66,688 KB
testcase_19 AC 84 ms
64,256 KB
testcase_20 AC 176 ms
73,984 KB
testcase_21 AC 370 ms
94,592 KB
testcase_22 AC 226 ms
77,824 KB
testcase_23 AC 235 ms
79,232 KB
testcase_24 AC 1,606 ms
149,888 KB
testcase_25 AC 1,546 ms
130,948 KB
testcase_26 AC 1,559 ms
131,848 KB
testcase_27 AC 1,572 ms
130,932 KB
testcase_28 AC 1,574 ms
131,852 KB
testcase_29 AC 1,704 ms
151,952 KB
testcase_30 AC 1,536 ms
132,100 KB
testcase_31 AC 1,591 ms
130,948 KB
testcase_32 AC 1,646 ms
150,912 KB
testcase_33 AC 1,536 ms
131,456 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [list(map(int, input().split())) for _ in range(N)]
D = []

for i in range(N - 1):
    x1, y1 = XY[i]
    for j in range(i + 1, N):
        x2, y2 = XY[j]
        d2 = (x1 - x2) ** 2 + (y1 - y2) ** 2
        D.append((d2, i, j))
D.sort()
cnt = 0
removed = set()
for d, i, j in D:
    if i == 0:
        if j in removed:
            continue
        else:
            removed.add(j)
            cnt += 1
    else:
        if i in removed or j in removed:
            continue
        else:
            removed.add(i)
            removed.add(j)
print(cnt)
0