結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-21 23:53:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,462 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,176 KB
最終ジャッジ日時 2024-11-08 11:36:15
合計ジャッジ時間 23,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
33,176 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 333 ms
18,804 KB
testcase_03 AC 613 ms
26,472 KB
testcase_04 AC 828 ms
29,256 KB
testcase_05 AC 833 ms
29,376 KB
testcase_06 AC 1,052 ms
29,252 KB
testcase_07 AC 828 ms
32,684 KB
testcase_08 AC 832 ms
32,556 KB
testcase_09 AC 1,091 ms
32,552 KB
testcase_10 AC 740 ms
27,664 KB
testcase_11 AC 784 ms
28,440 KB
testcase_12 AC 917 ms
26,992 KB
testcase_13 AC 763 ms
31,052 KB
testcase_14 AC 796 ms
31,692 KB
testcase_15 AC 928 ms
29,288 KB
testcase_16 AC 1,400 ms
29,256 KB
testcase_17 AC 1,462 ms
29,372 KB
testcase_18 AC 1,390 ms
29,248 KB
testcase_19 AC 1,332 ms
32,556 KB
testcase_20 AC 1,296 ms
32,680 KB
testcase_21 AC 1,290 ms
32,680 KB
testcase_22 AC 99 ms
27,676 KB
testcase_23 AC 1,313 ms
28,568 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 41 ms
11,008 KB
testcase_26 AC 34 ms
10,880 KB
testcase_27 AC 34 ms
10,752 KB
testcase_28 AC 144 ms
14,324 KB
testcase_29 AC 79 ms
12,288 KB
testcase_30 AC 43 ms
11,264 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
    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