結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
58,760 KB
testcase_01 AC 484 ms
44,044 KB
testcase_02 AC 500 ms
47,116 KB
testcase_03 AC 537 ms
53,956 KB
testcase_04 AC 568 ms
55,652 KB
testcase_05 AC 590 ms
56,184 KB
testcase_06 AC 563 ms
55,664 KB
testcase_07 AC 562 ms
58,068 KB
testcase_08 AC 571 ms
58,176 KB
testcase_09 AC 570 ms
58,444 KB
testcase_10 AC 562 ms
53,888 KB
testcase_11 AC 559 ms
55,236 KB
testcase_12 AC 549 ms
52,856 KB
testcase_13 AC 554 ms
56,752 KB
testcase_14 AC 564 ms
57,208 KB
testcase_15 AC 559 ms
56,112 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


l = 0.
r = 1e9 + eps
while r - l > eps:
    m = (r + l) * 0.5
    if (L / m + eps).astype(np.int32).sum() >= K:
        l = m
    else:
        r = m

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