結果

問題 No.453 製薬会社
ユーザー 山本信二山本信二
提出日時 2022-05-23 00:51:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,591 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 140,460 KB
最終ジャッジ日時 2024-09-20 12:59:59
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,591 ms
68,720 KB
testcase_01 AC 1,240 ms
69,124 KB
testcase_02 AC 1,236 ms
68,868 KB
testcase_03 AC 1,241 ms
68,620 KB
testcase_04 AC 1,246 ms
68,856 KB
testcase_05 AC 1,259 ms
68,492 KB
testcase_06 AC 1,233 ms
69,000 KB
testcase_07 AC 1,235 ms
69,232 KB
testcase_08 AC 1,232 ms
69,232 KB
testcase_09 AC 1,223 ms
68,868 KB
testcase_10 AC 1,239 ms
68,748 KB
testcase_11 AC 1,239 ms
68,732 KB
testcase_12 AC 1,240 ms
140,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.optimize import linprog

# linprogはminimizeを計算するので金額を負値にする
c = [-1000, -2000]
A = [[3 / 4, 2 / 7], [1 / 4, 5 / 7]]
B = list(map(int, input().split()))
bounds = [(0, None), (0, None)]

res = linprog(c, A_ub=A, b_ub=B, bounds=bounds, method='revised simplex', options={'autoscale': True})
print(-res.fun)
0