結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lloyzlloyz
提出日時 2022-01-16 16:39:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 318 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 206,464 KB
最終ジャッジ日時 2024-11-23 11:36:12
合計ジャッジ時間 64,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 43 ms
164,608 KB
testcase_02 AC 93 ms
185,856 KB
testcase_03 AC 133 ms
202,496 KB
testcase_04 AC 155 ms
110,336 KB
testcase_05 AC 157 ms
111,804 KB
testcase_06 AC 165 ms
206,464 KB
testcase_07 AC 171 ms
203,904 KB
testcase_08 AC 173 ms
203,264 KB
testcase_09 AC 179 ms
101,632 KB
testcase_10 AC 145 ms
99,584 KB
testcase_11 AC 153 ms
103,904 KB
testcase_12 AC 150 ms
99,584 KB
testcase_13 AC 158 ms
103,936 KB
testcase_14 AC 161 ms
107,776 KB
testcase_15 AC 158 ms
104,164 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 40 ms
51,712 KB
testcase_25 AC 53 ms
62,208 KB
testcase_26 AC 52 ms
61,440 KB
testcase_27 AC 48 ms
59,136 KB
testcase_28 AC 71 ms
69,268 KB
testcase_29 AC 60 ms
64,768 KB
testcase_30 AC 52 ms
168,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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