結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
102,144 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 206 ms
105,728 KB
testcase_05 WA -
testcase_06 AC 202 ms
105,856 KB
testcase_07 AC 209 ms
101,888 KB
testcase_08 WA -
testcase_09 AC 211 ms
101,888 KB
testcase_10 AC 186 ms
102,400 KB
testcase_11 AC 196 ms
105,600 KB
testcase_12 AC 180 ms
102,272 KB
testcase_13 AC 188 ms
104,448 KB
testcase_14 AC 196 ms
107,520 KB
testcase_15 AC 182 ms
103,936 KB
testcase_16 WA -
testcase_17 AC 208 ms
106,112 KB
testcase_18 AC 205 ms
105,984 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 209 ms
101,888 KB
testcase_22 AC 79 ms
96,768 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 47 ms
65,280 KB
testcase_26 AC 43 ms
61,056 KB
testcase_27 AC 41 ms
59,136 KB
testcase_28 AC 78 ms
79,360 KB
testcase_29 WA -
testcase_30 AC 49 ms
65,280 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
    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