結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2015-08-03 03:48:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,432 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,272 KB
最終ジャッジ日時 2024-11-08 11:37:23
合計ジャッジ時間 45,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,412 ms
33,272 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 864 ms
18,908 KB
testcase_03 AC 1,644 ms
26,448 KB
testcase_04 AC 2,405 ms
29,232 KB
testcase_05 AC 2,432 ms
29,232 KB
testcase_06 AC 2,101 ms
29,100 KB
testcase_07 AC 2,279 ms
32,416 KB
testcase_08 AC 2,286 ms
32,404 KB
testcase_09 AC 1,995 ms
32,516 KB
testcase_10 AC 2,207 ms
27,648 KB
testcase_11 AC 2,302 ms
28,416 KB
testcase_12 AC 1,806 ms
26,716 KB
testcase_13 AC 2,075 ms
31,024 KB
testcase_14 AC 2,198 ms
31,928 KB
testcase_15 AC 1,681 ms
29,396 KB
testcase_16 AC 1,612 ms
29,232 KB
testcase_17 AC 1,537 ms
29,224 KB
testcase_18 AC 1,478 ms
29,356 KB
testcase_19 AC 1,425 ms
32,532 KB
testcase_20 AC 1,434 ms
32,532 KB
testcase_21 AC 1,434 ms
32,532 KB
testcase_22 AC 1,340 ms
27,528 KB
testcase_23 AC 1,400 ms
28,548 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 78 ms
11,008 KB
testcase_26 AC 47 ms
10,752 KB
testcase_27 AC 40 ms
10,624 KB
testcase_28 AC 399 ms
14,048 KB
testcase_29 AC 222 ms
12,280 KB
testcase_30 AC 80 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    L = list(map(int, input().split()))
    K = int(input())

    a = 0
    b = max(L)

    EPS = 1e-10
    EPS1 = 1 + EPS

    while b - a > EPS and b > a * EPS1:
        c = (a + b) / 2
        n = sum(int(l / c) for l in L)
        if n >= K:
            a = c
        else:
            b = c

    print((a + b) / 2)


def main():
    solve()


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