結果

問題 No.453 製薬会社
ユーザー kokoa1046kokoa1046
提出日時 2017-10-19 20:40:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 336 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 137,588 KB
最終ジャッジ日時 2024-11-21 07:39:10
合計ジャッジ時間 23,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,583 ms
69,156 KB
testcase_02 AC 1,405 ms
69,280 KB
testcase_03 AC 1,405 ms
68,772 KB
testcase_04 AC 1,394 ms
69,136 KB
testcase_05 AC 1,389 ms
68,648 KB
testcase_06 AC 1,385 ms
69,392 KB
testcase_07 AC 1,388 ms
68,772 KB
testcase_08 AC 1,398 ms
68,644 KB
testcase_09 AC 1,393 ms
68,880 KB
testcase_10 AC 1,396 ms
69,396 KB
testcase_11 AC 1,395 ms
69,288 KB
testcase_12 AC 1,413 ms
137,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import scipy.optimize


c = [-1000, -2000]
A = [[3 / 4, 2 / 7], [1 / 4, 5 / 7]]
xb = (0, None)
yb = (0, None)


def main():
    b = [int(x) for x in input().split()]
    res = scipy.optimize.linprog(c, A_ub=A, b_ub=b, bounds=(xb, yb))
    print("{:.12f}".format(-res.fun))


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