結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-21 23:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 83,072 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-11-08 11:34:08
合計ジャッジ時間 6,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
102,144 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 107 ms
86,912 KB
testcase_03 AC 147 ms
98,432 KB
testcase_04 AC 180 ms
106,240 KB
testcase_05 AC 183 ms
106,624 KB
testcase_06 AC 210 ms
106,368 KB
testcase_07 AC 189 ms
102,144 KB
testcase_08 AC 189 ms
102,272 KB
testcase_09 AC 217 ms
102,016 KB
testcase_10 AC 167 ms
102,656 KB
testcase_11 AC 175 ms
105,856 KB
testcase_12 AC 190 ms
102,528 KB
testcase_13 AC 171 ms
104,704 KB
testcase_14 AC 177 ms
107,776 KB
testcase_15 AC 190 ms
104,448 KB
testcase_16 AC 252 ms
106,368 KB
testcase_17 AC 263 ms
106,368 KB
testcase_18 AC 253 ms
106,240 KB
testcase_19 AC 259 ms
102,400 KB
testcase_20 AC 254 ms
102,272 KB
testcase_21 AC 255 ms
102,144 KB
testcase_22 AC 91 ms
97,152 KB
testcase_23 AC 247 ms
106,112 KB
testcase_24 AC 42 ms
52,480 KB
testcase_25 AC 53 ms
62,336 KB
testcase_26 AC 51 ms
60,416 KB
testcase_27 AC 48 ms
59,008 KB
testcase_28 AC 80 ms
79,360 KB
testcase_29 AC 67 ms
72,576 KB
testcase_30 AC 54 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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**-10
    sumLs = sum(Ls)
    maxLs = max(Ls)
    lower = max(maxLs/K, sumLs/(K + N)) - eps
#    lower = maxLs/K - eps
    upper = min(sumLs/K, maxLs) + eps
    while upper - lower > eps and (upper - lower)/lower > eps:
        mid = (upper + lower) / 2
        if sum(int(L/mid) for L in Ls) >= K:
            lower = mid
        else:
            upper = mid
    return (lower + upper)/2


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