結果

問題 No.1265 Balloon Survival
ユーザー paruf4paruf4
提出日時 2020-10-24 00:06:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,176 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 154,564 KB
最終ジャッジ日時 2024-07-21 14:05:23
合計ジャッジ時間 15,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,156 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 37 ms
53,076 KB
testcase_04 AC 38 ms
53,184 KB
testcase_05 AC 39 ms
53,004 KB
testcase_06 AC 38 ms
52,412 KB
testcase_07 AC 38 ms
52,956 KB
testcase_08 AC 40 ms
53,032 KB
testcase_09 AC 41 ms
53,040 KB
testcase_10 AC 38 ms
52,008 KB
testcase_11 AC 40 ms
52,692 KB
testcase_12 AC 39 ms
52,880 KB
testcase_13 AC 39 ms
52,552 KB
testcase_14 AC 129 ms
77,516 KB
testcase_15 AC 102 ms
74,140 KB
testcase_16 AC 63 ms
66,112 KB
testcase_17 AC 570 ms
125,044 KB
testcase_18 AC 74 ms
70,248 KB
testcase_19 AC 65 ms
66,952 KB
testcase_20 AC 124 ms
77,532 KB
testcase_21 AC 248 ms
94,652 KB
testcase_22 AC 180 ms
90,796 KB
testcase_23 AC 203 ms
93,600 KB
testcase_24 AC 1,154 ms
154,152 KB
testcase_25 AC 1,145 ms
154,564 KB
testcase_26 AC 1,147 ms
154,116 KB
testcase_27 AC 1,140 ms
154,252 KB
testcase_28 AC 1,155 ms
154,268 KB
testcase_29 AC 1,169 ms
154,088 KB
testcase_30 AC 1,150 ms
154,348 KB
testcase_31 AC 1,148 ms
154,344 KB
testcase_32 AC 1,176 ms
154,248 KB
testcase_33 AC 1,164 ms
154,316 KB
testcase_34 AC 39 ms
53,424 KB
testcase_35 AC 37 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [tuple(map(int, input().split())) for _ in range(n)]
dist = []
for i in range(n):
    x1, y1 = xy[i]
    for j in range(i+1, n):
        x2, y2 = xy[j]
        d = (x1-x2)**2+(y1-y2)**2
        dist.append((d, i, j))
dist = sorted(dist, key=lambda x: x[0])
used = set()
res = 0
for _, i, j in dist:
    if i == 0:
        if j in used:
            continue
        else:
            res += 1
            used.add(j)
    else:
        if i in used or j in used:
            continue
        else:
            used.add(i)
            used.add(j)

print(res)
0