結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー H3PO4H3PO4
提出日時 2020-04-23 12:01:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,412 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 63,088 KB
最終ジャッジ日時 2024-11-08 13:16:44
合計ジャッジ時間 46,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,049 ms
62,824 KB
testcase_01 AC 508 ms
44,052 KB
testcase_02 AC 1,216 ms
49,308 KB
testcase_03 AC 1,868 ms
56,816 KB
testcase_04 AC 1,858 ms
58,320 KB
testcase_05 AC 1,869 ms
58,312 KB
testcase_06 AC 1,544 ms
57,928 KB
testcase_07 AC 2,404 ms
62,952 KB
testcase_08 AC 2,412 ms
63,088 KB
testcase_09 AC 1,927 ms
63,080 KB
testcase_10 AC 1,752 ms
57,468 KB
testcase_11 AC 1,810 ms
57,580 KB
testcase_12 AC 1,412 ms
56,896 KB
testcase_13 AC 2,257 ms
61,376 KB
testcase_14 AC 2,319 ms
61,964 KB
testcase_15 AC 1,753 ms
59,420 KB
testcase_16 AC 1,249 ms
57,812 KB
testcase_17 AC 1,041 ms
57,920 KB
testcase_18 AC 1,024 ms
58,052 KB
testcase_19 AC 888 ms
62,564 KB
testcase_20 AC 866 ms
63,072 KB
testcase_21 AC 868 ms
62,948 KB
testcase_22 AC 987 ms
57,360 KB
testcase_23 AC 991 ms
57,588 KB
testcase_24 AC 507 ms
44,308 KB
testcase_25 AC 556 ms
43,936 KB
testcase_26 AC 523 ms
44,188 KB
testcase_27 AC 517 ms
44,312 KB
testcase_28 AC 822 ms
45,460 KB
testcase_29 AC 680 ms
44,180 KB
testcase_30 AC 550 ms
44,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
L = np.array(tuple(map(int, input().split())))
K = int(input())
l, r = 0, 10 ** 9

for _ in range(100):
    m = (l + r) / 2
    if (L // m).astype(int).sum() < K:
        r = m
    else:
        l = m
print(l)
0