結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2016-02-23 17:26:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,766 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,392 KB
最終ジャッジ日時 2024-11-08 11:47:21
合計ジャッジ時間 62,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,470 ms
32,556 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,054 ms
18,896 KB
testcase_03 AC 1,998 ms
26,568 KB
testcase_04 AC 2,742 ms
29,344 KB
testcase_05 AC 2,740 ms
29,092 KB
testcase_06 AC 2,652 ms
29,216 KB
testcase_07 AC 2,757 ms
33,268 KB
testcase_08 AC 2,766 ms
33,264 KB
testcase_09 AC 2,720 ms
33,392 KB
testcase_10 AC 2,465 ms
26,552 KB
testcase_11 AC 2,605 ms
28,404 KB
testcase_12 AC 2,295 ms
26,400 KB
testcase_13 AC 2,526 ms
31,152 KB
testcase_14 AC 2,616 ms
32,188 KB
testcase_15 AC 2,325 ms
29,868 KB
testcase_16 AC 2,582 ms
29,092 KB
testcase_17 AC 2,594 ms
29,208 KB
testcase_18 AC 2,560 ms
29,212 KB
testcase_19 AC 2,478 ms
33,260 KB
testcase_20 AC 2,459 ms
33,260 KB
testcase_21 AC 2,470 ms
33,268 KB
testcase_22 AC 2,321 ms
27,404 KB
testcase_23 AC 2,450 ms
28,420 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 83 ms
11,008 KB
testcase_26 AC 50 ms
10,880 KB
testcase_27 AC 45 ms
10,752 KB
testcase_28 AC 463 ms
14,076 KB
testcase_29 AC 247 ms
12,272 KB
testcase_30 AC 87 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    l = max(L) / K
    r = max(L) + 1

    for i in range(60):
        m = (l + r) / 2
        n = sum(int(l / m) for l in L)
        if n >= K:
            l = m
        else:
            r = m

    print((l + r) / 2)


def main():
    solve()


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