結果

問題 No.1265 Balloon Survival
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-07 16:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,721 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 133,068 KB
最終ジャッジ日時 2024-06-13 02:16:36
合計ジャッジ時間 21,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,152 KB
testcase_01 AC 37 ms
53,220 KB
testcase_02 AC 37 ms
52,236 KB
testcase_03 AC 38 ms
51,948 KB
testcase_04 AC 38 ms
52,360 KB
testcase_05 AC 37 ms
52,828 KB
testcase_06 AC 37 ms
53,528 KB
testcase_07 AC 37 ms
52,928 KB
testcase_08 AC 39 ms
52,212 KB
testcase_09 AC 37 ms
52,960 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 37 ms
51,872 KB
testcase_12 AC 37 ms
53,232 KB
testcase_13 AC 37 ms
52,936 KB
testcase_14 AC 176 ms
75,156 KB
testcase_15 AC 137 ms
71,596 KB
testcase_16 AC 73 ms
64,312 KB
testcase_17 AC 788 ms
101,344 KB
testcase_18 AC 96 ms
67,504 KB
testcase_19 AC 79 ms
64,384 KB
testcase_20 AC 175 ms
74,628 KB
testcase_21 AC 399 ms
95,124 KB
testcase_22 AC 223 ms
78,856 KB
testcase_23 AC 242 ms
80,460 KB
testcase_24 AC 1,666 ms
131,304 KB
testcase_25 AC 1,681 ms
131,772 KB
testcase_26 AC 1,705 ms
132,980 KB
testcase_27 AC 1,677 ms
131,840 KB
testcase_28 AC 1,680 ms
132,816 KB
testcase_29 AC 1,721 ms
133,068 KB
testcase_30 AC 1,674 ms
133,032 KB
testcase_31 AC 1,639 ms
131,980 KB
testcase_32 AC 1,695 ms
132,336 KB
testcase_33 AC 1,670 ms
132,332 KB
testcase_34 AC 39 ms
52,900 KB
testcase_35 AC 37 ms
52,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = [0] * n
Y = [0] * n
for i in range(n):
    X[i], Y[i] = map(int, input().split())
dist = []
for i in range(n):
    for j in range(i + 1, n):
        dx = X[j] - X[i]
        dy = Y[j] - Y[i]
        dist.append((dx ** 2 + dy ** 2, i, j))
        
dist.sort()
used = [False] * n
ans = 0
for _, i, j in dist:
    if i == 0:
        if not used[j]:
            ans += 1
            used[j] = True
    elif not used[i] and not used[j]:
        used[i] = used[j] = True
print(ans)
0