結果

問題 No.453 製薬会社
ユーザー n_knuun_knuu
提出日時 2020-02-02 02:33:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 329 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 136,684 KB
最終ジャッジ日時 2024-09-18 20:27:19
合計ジャッジ時間 20,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import linprog


def main() -> None:
    C, D = map(int, input().split())

    c = [-1000, -2000]
    A = [[3/4, 2/7], [1/4, 5/7]]
    b = [C, D]
    bounds = [(0, None), (0, None)]
    res = linprog(c, A_ub=A, b_ub=b, bounds=bounds)
    print(res)
    print(-res.fun)


if __name__ == '__main__':
    main()
0