結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー dice4084dice4084
提出日時 2023-01-03 15:51:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,236 KB
最終ジャッジ日時 2024-05-05 07:14:33
合計ジャッジ時間 8,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
100,872 KB
testcase_01 AC 43 ms
59,008 KB
testcase_02 AC 131 ms
82,944 KB
testcase_03 AC 208 ms
99,712 KB
testcase_04 AC 268 ms
108,928 KB
testcase_05 AC 264 ms
108,744 KB
testcase_06 AC 260 ms
108,928 KB
testcase_07 AC 261 ms
100,748 KB
testcase_08 AC 261 ms
100,872 KB
testcase_09 AC 280 ms
101,128 KB
testcase_10 AC 255 ms
105,984 KB
testcase_11 AC 252 ms
109,236 KB
testcase_12 AC 241 ms
105,600 KB
testcase_13 AC 243 ms
101,120 KB
testcase_14 AC 256 ms
100,648 KB
testcase_15 AC 236 ms
105,344 KB
testcase_16 AC 273 ms
108,812 KB
testcase_17 AC 267 ms
108,732 KB
testcase_18 AC 264 ms
109,056 KB
testcase_19 AC 276 ms
100,948 KB
testcase_20 AC 266 ms
100,692 KB
testcase_21 AC 260 ms
100,952 KB
testcase_22 AC 245 ms
105,984 KB
testcase_23 AC 252 ms
109,056 KB
testcase_24 AC 37 ms
52,608 KB
testcase_25 AC 53 ms
63,488 KB
testcase_26 AC 51 ms
63,360 KB
testcase_27 AC 46 ms
61,312 KB
testcase_28 AC 84 ms
71,552 KB
testcase_29 AC 65 ms
67,400 KB
testcase_30 AC 53 ms
63,488 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
for _ in range(100):
    mid = (l + r) / 2
    if get_num_tree(mid) >= k:
        l = mid
    else:
        r = mid

print(l)
0