結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
102,272 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 211 ms
102,356 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 192 ms
102,528 KB
testcase_11 AC 205 ms
106,116 KB
testcase_12 WA -
testcase_13 AC 188 ms
104,576 KB
testcase_14 AC 198 ms
107,732 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 202 ms
105,984 KB
testcase_19 AC 210 ms
102,144 KB
testcase_20 WA -
testcase_21 AC 213 ms
102,400 KB
testcase_22 AC 72 ms
97,024 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 43 ms
65,792 KB
testcase_26 AC 40 ms
61,696 KB
testcase_27 WA -
testcase_28 AC 70 ms
79,360 KB
testcase_29 WA -
testcase_30 AC 42 ms
65,792 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**-9
    sumLs = sum(Ls)
    maxLs = max(Ls)
#    lower = max(maxLs/K, sumLs/(N + 2 * K)) - 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 (upper + lower) / 2


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