結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
100,608 KB
testcase_01 AC 46 ms
59,136 KB
testcase_02 AC 140 ms
82,484 KB
testcase_03 AC 221 ms
100,224 KB
testcase_04 AC 282 ms
108,928 KB
testcase_05 AC 280 ms
108,800 KB
testcase_06 AC 283 ms
108,544 KB
testcase_07 AC 286 ms
100,704 KB
testcase_08 AC 286 ms
100,624 KB
testcase_09 AC 287 ms
100,876 KB
testcase_10 AC 260 ms
105,728 KB
testcase_11 AC 272 ms
108,976 KB
testcase_12 AC 254 ms
105,416 KB
testcase_13 AC 263 ms
100,844 KB
testcase_14 AC 274 ms
100,844 KB
testcase_15 AC 253 ms
105,216 KB
testcase_16 AC 288 ms
108,800 KB
testcase_17 AC 288 ms
108,544 KB
testcase_18 AC 286 ms
108,672 KB
testcase_19 AC 286 ms
100,876 KB
testcase_20 AC 287 ms
100,936 KB
testcase_21 AC 287 ms
100,692 KB
testcase_22 AC 260 ms
105,472 KB
testcase_23 AC 277 ms
109,312 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 58 ms
63,760 KB
testcase_26 AC 57 ms
62,720 KB
testcase_27 AC 51 ms
60,928 KB
testcase_28 AC 89 ms
70,912 KB
testcase_29 AC 71 ms
67,200 KB
testcase_30 AC 60 ms
63,616 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