結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,377 ms
32,680 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 860 ms
19,148 KB
testcase_03 AC 1,633 ms
26,564 KB
testcase_04 AC 1,845 ms
29,344 KB
testcase_05 AC 1,836 ms
29,344 KB
testcase_06 AC 1,682 ms
29,344 KB
testcase_07 AC 2,200 ms
33,396 KB
testcase_08 AC 2,250 ms
33,392 KB
testcase_09 AC 1,980 ms
33,392 KB
testcase_10 AC 1,701 ms
26,680 KB
testcase_11 AC 1,775 ms
28,532 KB
testcase_12 AC 1,455 ms
26,780 KB
testcase_13 AC 2,040 ms
31,148 KB
testcase_14 AC 2,098 ms
32,444 KB
testcase_15 AC 1,685 ms
30,128 KB
testcase_16 AC 2,323 ms
29,348 KB
testcase_17 AC 2,275 ms
29,336 KB
testcase_18 AC 2,270 ms
29,340 KB
testcase_19 AC 2,270 ms
33,392 KB
testcase_20 AC 2,165 ms
33,512 KB
testcase_21 AC 2,148 ms
33,392 KB
testcase_22 AC 2,028 ms
27,652 KB
testcase_23 AC 2,123 ms
28,552 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 76 ms
11,264 KB
testcase_26 AC 45 ms
11,008 KB
testcase_27 AC 40 ms
11,008 KB
testcase_28 AC 393 ms
14,208 KB
testcase_29 AC 221 ms
12,400 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