結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー BucchimanBucchiman
提出日時 2020-08-18 01:02:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,231 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-11-08 13:23:47
合計ジャッジ時間 41,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,387 ms
32,684 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 854 ms
19,024 KB
testcase_03 AC 1,604 ms
26,568 KB
testcase_04 AC 1,838 ms
29,348 KB
testcase_05 AC 1,841 ms
29,344 KB
testcase_06 AC 1,668 ms
29,340 KB
testcase_07 AC 2,216 ms
33,392 KB
testcase_08 AC 2,231 ms
33,392 KB
testcase_09 AC 1,969 ms
33,520 KB
testcase_10 AC 1,672 ms
26,680 KB
testcase_11 AC 1,755 ms
28,532 KB
testcase_12 AC 1,470 ms
26,656 KB
testcase_13 AC 2,042 ms
31,152 KB
testcase_14 AC 2,164 ms
32,444 KB
testcase_15 AC 1,704 ms
30,124 KB
testcase_16 AC 1,479 ms
29,348 KB
testcase_17 AC 1,436 ms
29,332 KB
testcase_18 AC 1,422 ms
29,340 KB
testcase_19 AC 1,372 ms
33,396 KB
testcase_20 AC 1,370 ms
33,384 KB
testcase_21 AC 1,377 ms
33,392 KB
testcase_22 AC 1,304 ms
27,656 KB
testcase_23 AC 1,344 ms
28,548 KB
testcase_24 AC 31 ms
11,008 KB
testcase_25 AC 77 ms
11,264 KB
testcase_26 AC 48 ms
10,880 KB
testcase_27 AC 42 ms
10,880 KB
testcase_28 AC 388 ms
14,204 KB
testcase_29 AC 214 ms
12,396 KB
testcase_30 AC 80 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# FileName: 	code
# CreatedDate:  2020-08-17 16:53:46 +0900
# LastModified: 2020-08-18 01:01:59 +0900
#


def main():
    N = int(input())
    L = list(map(int, input().split()))
    K = int(input())
    left = 0
    right = 10**9
    t = 0
    while left+10**(-9) < right and t <= 60:
        middle = (left+right)/2
        sum_sticks = sum(l//middle for l in L)
        if sum_sticks < K:
            right = middle
        else:
            left = middle
        t += 1
    print(left)


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