結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 584 ms
57,640 KB
testcase_01 AC 474 ms
44,088 KB
testcase_02 AC 494 ms
46,992 KB
testcase_03 AC 548 ms
52,764 KB
testcase_04 AC 590 ms
53,460 KB
testcase_05 AC 578 ms
53,712 KB
testcase_06 AC 598 ms
53,452 KB
testcase_07 AC 592 ms
56,764 KB
testcase_08 AC 600 ms
56,792 KB
testcase_09 AC 618 ms
56,796 KB
testcase_10 AC 573 ms
52,352 KB
testcase_11 AC 571 ms
52,588 KB
testcase_12 AC 582 ms
52,032 KB
testcase_13 AC 590 ms
55,996 KB
testcase_14 AC 601 ms
56,308 KB
testcase_15 AC 567 ms
54,836 KB
testcase_16 AC 594 ms
53,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 595 ms
56,796 KB
testcase_20 WA -
testcase_21 AC 605 ms
57,048 KB
testcase_22 AC 571 ms
52,364 KB
testcase_23 WA -
testcase_24 AC 468 ms
44,056 KB
testcase_25 AC 471 ms
44,060 KB
testcase_26 AC 476 ms
44,312 KB
testcase_27 AC 475 ms
44,056 KB
testcase_28 AC 495 ms
45,080 KB
testcase_29 AC 476 ms
43,672 KB
testcase_30 AC 474 ms
44,312 KB
権限があれば一括ダウンロードができます

ソースコード

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
for _ in range(100):
    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