結果

問題 No.1265 Balloon Survival
ユーザー rlangevinrlangevin
提出日時 2023-01-23 20:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,773 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 132,936 KB
最終ジャッジ日時 2024-06-25 14:40:44
合計ジャッジ時間 22,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,764 KB
testcase_01 AC 39 ms
52,856 KB
testcase_02 AC 39 ms
52,364 KB
testcase_03 AC 39 ms
52,868 KB
testcase_04 AC 39 ms
53,148 KB
testcase_05 AC 39 ms
53,220 KB
testcase_06 AC 38 ms
52,928 KB
testcase_07 AC 38 ms
53,252 KB
testcase_08 AC 39 ms
52,312 KB
testcase_09 AC 39 ms
53,296 KB
testcase_10 AC 38 ms
53,640 KB
testcase_11 AC 39 ms
53,224 KB
testcase_12 AC 39 ms
52,660 KB
testcase_13 AC 39 ms
53,500 KB
testcase_14 AC 181 ms
75,496 KB
testcase_15 AC 139 ms
72,088 KB
testcase_16 AC 74 ms
64,536 KB
testcase_17 AC 794 ms
101,400 KB
testcase_18 AC 99 ms
67,824 KB
testcase_19 AC 80 ms
64,924 KB
testcase_20 AC 176 ms
74,632 KB
testcase_21 AC 414 ms
94,712 KB
testcase_22 AC 228 ms
78,548 KB
testcase_23 AC 244 ms
79,680 KB
testcase_24 AC 1,737 ms
131,108 KB
testcase_25 AC 1,713 ms
132,168 KB
testcase_26 AC 1,712 ms
132,932 KB
testcase_27 AC 1,734 ms
131,692 KB
testcase_28 AC 1,719 ms
132,904 KB
testcase_29 AC 1,771 ms
132,692 KB
testcase_30 AC 1,723 ms
132,936 KB
testcase_31 AC 1,706 ms
132,104 KB
testcase_32 AC 1,773 ms
132,424 KB
testcase_33 AC 1,732 ms
131,884 KB
testcase_34 AC 40 ms
52,856 KB
testcase_35 AC 39 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a, b):
    return (X[a] - X[b])**2 + (Y[a] - Y[b])**2

N = int(input())
X, Y = [0] * N, [0] * N
for i in range(N):
    X[i], Y[i] = map(int, input().split())
L = []
for i in range(N):
    for j in range(i + 1, N):
        L.append((f(i, j), i, j))
        
L.sort()
S = set()
ans = 0
for _, i, j in L:
    if i == 0:
        if j in S:
            continue
        else:
            ans += 1
            S.add(j)
    else:
        if i not in S and j not in S:
            S.add(i)
            S.add(j)
print(ans)
0