結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-26 15:31:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 57,532 KB
最終ジャッジ日時 2024-09-24 18:33:23
合計ジャッジ時間 24,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 805 ms
57,532 KB
testcase_01 WA -
testcase_02 AC 602 ms
47,136 KB
testcase_03 AC 717 ms
53,396 KB
testcase_04 AC 792 ms
53,836 KB
testcase_05 AC 809 ms
53,712 KB
testcase_06 AC 804 ms
53,196 KB
testcase_07 AC 778 ms
57,140 KB
testcase_08 AC 793 ms
56,820 KB
testcase_09 AC 812 ms
56,916 KB
testcase_10 AC 753 ms
52,480 KB
testcase_11 AC 752 ms
52,848 KB
testcase_12 AC 754 ms
51,780 KB
testcase_13 AC 748 ms
55,476 KB
testcase_14 AC 777 ms
56,336 KB
testcase_15 AC 737 ms
54,668 KB
testcase_16 AC 792 ms
53,416 KB
testcase_17 AC 775 ms
53,184 KB
testcase_18 AC 787 ms
53,708 KB
testcase_19 AC 794 ms
56,908 KB
testcase_20 AC 791 ms
57,180 KB
testcase_21 AC 786 ms
56,788 KB
testcase_22 AC 769 ms
52,624 KB
testcase_23 AC 768 ms
52,852 KB
testcase_24 WA -
testcase_25 AC 486 ms
44,064 KB
testcase_26 WA -
testcase_27 AC 482 ms
43,668 KB
testcase_28 AC 523 ms
44,580 KB
testcase_29 AC 515 ms
43,924 KB
testcase_30 AC 493 ms
44,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
eps = 1e-10
N = int(input())
L = np.array(input().split(), dtype=np.float64)
K = int(input())


l = 0.
r = 1e9 + eps
for _ in range(500):
    m = (r + l) * 0.5
    if (L / m).astype(np.int32).sum() >= K:
        l = m
    else:
        r = m

print("{:10f}".format((l + r) * 0.5))
0