結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-21 23:44:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 107,932 KB
最終ジャッジ日時 2024-07-08 11:43:10
合計ジャッジ時間 5,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
102,272 KB
testcase_01 WA -
testcase_02 AC 89 ms
86,912 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 184 ms
106,496 KB
testcase_07 AC 152 ms
102,328 KB
testcase_08 WA -
testcase_09 AC 182 ms
102,272 KB
testcase_10 AC 134 ms
102,728 KB
testcase_11 AC 143 ms
106,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 139 ms
107,932 KB
testcase_15 AC 160 ms
104,388 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 232 ms
106,624 KB
testcase_19 AC 229 ms
102,352 KB
testcase_20 WA -
testcase_21 AC 232 ms
102,272 KB
testcase_22 AC 72 ms
97,408 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 37 ms
59,392 KB
testcase_28 AC 60 ms
79,360 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor
def read_data():
    N = int(input())
    Ls = list(map(int, input().split()))
    K = int(input())
    return N, Ls, K

def solve(N, Ls, K):
    if K == 1:
        return max(Ls)
    eps = 5*10**-9
    sumLs = sum(Ls)
    maxLs = max(Ls)
    lower = max(maxLs/K, sumLs/(N + K)) - eps
    upper = min(sumLs/K, maxLs) + eps
    while upper - lower > eps and (upper - lower)/lower > eps:
        mid = (upper + lower) / 2
        if sum(floor(L/mid) for L in Ls) >= K:
            lower = mid
        else:
            upper = mid
    return (upper + lower) / 2


N, Ls, K = read_data()
print(solve(N, Ls, K))
0