結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー BucchimanBucchiman
提出日時 2020-08-18 00:40:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,404 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-11-08 13:24:37
合計ジャッジ時間 49,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,398 ms
32,556 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 864 ms
19,024 KB
testcase_03 AC 1,652 ms
26,500 KB
testcase_04 AC 1,862 ms
29,348 KB
testcase_05 AC 1,838 ms
29,220 KB
testcase_06 AC 1,688 ms
29,348 KB
testcase_07 AC 2,231 ms
33,268 KB
testcase_08 AC 2,272 ms
33,396 KB
testcase_09 AC 1,980 ms
33,520 KB
testcase_10 AC 1,700 ms
26,424 KB
testcase_11 AC 1,808 ms
28,660 KB
testcase_12 AC 1,486 ms
26,656 KB
testcase_13 AC 2,057 ms
31,152 KB
testcase_14 AC 2,153 ms
32,192 KB
testcase_15 AC 1,713 ms
30,000 KB
testcase_16 AC 2,404 ms
29,476 KB
testcase_17 AC 2,321 ms
29,332 KB
testcase_18 AC 2,331 ms
29,344 KB
testcase_19 AC 2,226 ms
33,392 KB
testcase_20 AC 2,185 ms
33,388 KB
testcase_21 AC 2,205 ms
33,396 KB
testcase_22 AC 2,068 ms
27,652 KB
testcase_23 AC 2,217 ms
28,416 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 76 ms
11,136 KB
testcase_26 AC 47 ms
11,008 KB
testcase_27 AC 43 ms
10,880 KB
testcase_28 AC 392 ms
14,336 KB
testcase_29 AC 216 ms
12,396 KB
testcase_30 AC 79 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# FileName: 	code
# CreatedDate:  2020-08-17 16:53:46 +0900
# LastModified: 2020-08-18 00:40:36 +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 <= 10**2:
        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