結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2016-02-23 17:04:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,449 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,564 KB
最終ジャッジ日時 2024-11-08 11:45:43
合計ジャッジ時間 45,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,436 ms
32,564 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 884 ms
18,904 KB
testcase_03 AC 1,667 ms
26,452 KB
testcase_04 AC 2,449 ms
29,356 KB
testcase_05 AC 2,440 ms
29,232 KB
testcase_06 AC 2,080 ms
29,352 KB
testcase_07 AC 2,297 ms
32,532 KB
testcase_08 AC 2,294 ms
32,496 KB
testcase_09 AC 1,989 ms
32,532 KB
testcase_10 AC 2,210 ms
26,692 KB
testcase_11 AC 2,324 ms
28,544 KB
testcase_12 AC 1,817 ms
25,800 KB
testcase_13 AC 2,081 ms
31,036 KB
testcase_14 AC 2,178 ms
31,592 KB
testcase_15 AC 1,706 ms
29,412 KB
testcase_16 AC 1,629 ms
29,228 KB
testcase_17 AC 1,549 ms
29,348 KB
testcase_18 AC 1,507 ms
29,356 KB
testcase_19 AC 1,443 ms
32,532 KB
testcase_20 AC 1,435 ms
32,528 KB
testcase_21 AC 1,426 ms
32,532 KB
testcase_22 AC 1,342 ms
26,572 KB
testcase_23 AC 1,425 ms
28,428 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 78 ms
11,136 KB
testcase_26 AC 47 ms
10,752 KB
testcase_27 AC 41 ms
10,752 KB
testcase_28 AC 404 ms
14,180 KB
testcase_29 AC 223 ms
12,408 KB
testcase_30 AC 80 ms
11,264 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