結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lloyzlloyz
提出日時 2022-01-16 16:30:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 207,232 KB
最終ジャッジ日時 2024-11-23 11:33:52
合計ジャッジ時間 47,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
207,232 KB
testcase_01 AC 45 ms
63,744 KB
testcase_02 AC 118 ms
184,192 KB
testcase_03 AC 179 ms
198,016 KB
testcase_04 AC 224 ms
109,696 KB
testcase_05 AC 223 ms
206,208 KB
testcase_06 AC 226 ms
104,064 KB
testcase_07 AC 237 ms
102,144 KB
testcase_08 AC 236 ms
102,272 KB
testcase_09 AC 236 ms
102,016 KB
testcase_10 AC 207 ms
99,712 KB
testcase_11 AC 220 ms
103,552 KB
testcase_12 AC 202 ms
99,072 KB
testcase_13 AC 217 ms
105,088 KB
testcase_14 AC 225 ms
107,648 KB
testcase_15 AC 208 ms
104,704 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 196 ms
98,688 KB
testcase_23 TLE -
testcase_24 AC 42 ms
51,840 KB
testcase_25 AC 55 ms
61,440 KB
testcase_26 AC 53 ms
61,184 KB
testcase_27 AC 50 ms
59,136 KB
testcase_28 AC 80 ms
68,608 KB
testcase_29 AC 66 ms
64,768 KB
testcase_30 AC 56 ms
165,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor

n = int(input())
L = list(map(int, input().split()))
k = int(input())
eps = 1e-9

left = 0
right = max(L) + eps
while right - left > eps:
    mid = (left + right) / 2
    cnt = 0
    for i in range(n):
        cnt += floor(L[i] / mid)
    if cnt >= k:
        left = mid
    else:
        right = mid
print(left)
0