結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー dice4084dice4084
提出日時 2023-01-03 15:49:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 217,472 KB
最終ジャッジ日時 2024-11-27 01:58:15
合計ジャッジ時間 64,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 43 ms
64,384 KB
testcase_02 AC 109 ms
91,768 KB
testcase_03 AC 167 ms
209,408 KB
testcase_04 AC 204 ms
217,472 KB
testcase_05 AC 198 ms
209,168 KB
testcase_06 AC 203 ms
115,952 KB
testcase_07 AC 204 ms
202,144 KB
testcase_08 AC 202 ms
108,540 KB
testcase_09 AC 210 ms
101,012 KB
testcase_10 AC 189 ms
105,344 KB
testcase_11 AC 201 ms
109,056 KB
testcase_12 AC 184 ms
105,216 KB
testcase_13 AC 195 ms
100,608 KB
testcase_14 AC 202 ms
100,588 KB
testcase_15 AC 187 ms
104,960 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 37 ms
52,096 KB
testcase_25 AC 54 ms
63,488 KB
testcase_26 AC 52 ms
62,208 KB
testcase_27 AC 45 ms
60,800 KB
testcase_28 AC 74 ms
71,168 KB
testcase_29 AC 62 ms
66,944 KB
testcase_30 AC 53 ms
171,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def get_num_tree(length):
    ans = sum(int(tree / length) for tree in L)
    return ans


n = int(input())
L = tuple(map(int, input().split()))
k = int(input())

l = 0
r = max(L) + 1
while r - l >= 10 ** (-9):
    mid = (l + r) / 2
    if get_num_tree(mid) >= k:
        l = mid
    else:
        r = mid

print(l)
0