結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
107,392 KB
testcase_01 AC 45 ms
160,512 KB
testcase_02 AC 121 ms
183,808 KB
testcase_03 AC 183 ms
100,864 KB
testcase_04 AC 232 ms
209,152 KB
testcase_05 AC 233 ms
206,336 KB
testcase_06 AC 231 ms
206,336 KB
testcase_07 AC 243 ms
203,904 KB
testcase_08 AC 244 ms
102,272 KB
testcase_09 TLE -
testcase_10 AC 214 ms
99,584 KB
testcase_11 AC 224 ms
103,552 KB
testcase_12 AC 208 ms
98,816 KB
testcase_13 AC 223 ms
104,960 KB
testcase_14 AC 230 ms
107,264 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 192 ms
98,816 KB
testcase_23 TLE -
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 55 ms
61,440 KB
testcase_26 AC 52 ms
60,800 KB
testcase_27 AC 48 ms
59,008 KB
testcase_28 AC 80 ms
68,608 KB
testcase_29 AC 67 ms
64,384 KB
testcase_30 AC 56 ms
165,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor

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

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