結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-08 20:34:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,871 ms / 5,000 ms
コード長 680 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,200 KB
最終ジャッジ日時 2024-11-08 11:48:27
合計ジャッジ時間 32,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
27,200 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 706 ms
16,932 KB
testcase_03 AC 1,314 ms
22,464 KB
testcase_04 AC 1,855 ms
23,640 KB
testcase_05 AC 1,871 ms
23,648 KB
testcase_06 AC 1,561 ms
23,512 KB
testcase_07 AC 1,792 ms
26,964 KB
testcase_08 AC 1,806 ms
26,836 KB
testcase_09 AC 1,630 ms
26,836 KB
testcase_10 AC 1,687 ms
24,472 KB
testcase_11 AC 1,776 ms
24,040 KB
testcase_12 AC 1,343 ms
21,880 KB
testcase_13 AC 1,644 ms
25,536 KB
testcase_14 AC 1,708 ms
26,104 KB
testcase_15 AC 1,367 ms
24,628 KB
testcase_16 AC 1,189 ms
23,776 KB
testcase_17 AC 1,137 ms
23,504 KB
testcase_18 AC 1,105 ms
23,448 KB
testcase_19 AC 1,153 ms
26,964 KB
testcase_20 AC 1,104 ms
26,832 KB
testcase_21 AC 1,120 ms
26,836 KB
testcase_22 AC 102 ms
24,476 KB
testcase_23 AC 1,044 ms
24,024 KB
testcase_24 AC 32 ms
10,880 KB
testcase_25 AC 71 ms
11,392 KB
testcase_26 AC 46 ms
11,008 KB
testcase_27 AC 41 ms
11,008 KB
testcase_28 AC 331 ms
13,512 KB
testcase_29 AC 183 ms
12,160 KB
testcase_30 AC 71 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import array
import math


def compute_max_length(n, ls, k):
    if k == 1:
        return max(ls)
    eps = 10.0 ** (-10)
    high = 10.0 ** 9
    low = eps
    while high - low > eps and (high - low) / low > eps:
        mid = (high + low) / 2
        num_of_sticks = sum(math.floor(l / mid) for l in ls)
        if num_of_sticks >= k:
            low = mid
        else:
            high = mid
    return (high + low) / 2


def main():
    n = int(input())
    ls = array.array("L", map(int, input().split()))
    k = int(input())
    print("{:.16f}".format(compute_max_length(n, ls, k)))


if __name__ == '__main__':
    main()
0