結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,418 ms
32,688 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 873 ms
19,024 KB
testcase_03 AC 1,640 ms
26,568 KB
testcase_04 AC 1,864 ms
29,348 KB
testcase_05 AC 1,881 ms
29,344 KB
testcase_06 AC 1,726 ms
29,468 KB
testcase_07 AC 2,272 ms
33,396 KB
testcase_08 AC 2,250 ms
33,392 KB
testcase_09 AC 2,039 ms
33,396 KB
testcase_10 AC 1,683 ms
26,552 KB
testcase_11 AC 1,779 ms
28,660 KB
testcase_12 AC 1,487 ms
26,652 KB
testcase_13 AC 2,066 ms
31,276 KB
testcase_14 AC 2,156 ms
32,408 KB
testcase_15 AC 1,712 ms
30,256 KB
testcase_16 AC 1,489 ms
29,356 KB
testcase_17 AC 1,446 ms
29,464 KB
testcase_18 AC 1,429 ms
29,340 KB
testcase_19 AC 1,401 ms
33,388 KB
testcase_20 AC 1,387 ms
33,384 KB
testcase_21 AC 1,366 ms
33,520 KB
testcase_22 AC 1,282 ms
27,908 KB
testcase_23 AC 1,378 ms
28,548 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 78 ms
11,264 KB
testcase_26 AC 49 ms
11,008 KB
testcase_27 AC 43 ms
11,008 KB
testcase_28 AC 396 ms
14,208 KB
testcase_29 AC 222 ms
12,396 KB
testcase_30 AC 81 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