結果
問題 | No.453 製薬会社 |
ユーザー | Konton7 |
提出日時 | 2020-04-03 13:10:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-28 17:47:37 |
合計ジャッジ時間 | 1,089 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,624 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | WA | - |
testcase_03 | AC | 25 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 25 ms
10,752 KB |
testcase_07 | AC | 25 ms
10,496 KB |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
10,624 KB |
testcase_10 | AC | 24 ms
10,496 KB |
testcase_11 | AC | 25 ms
10,496 KB |
testcase_12 | AC | 24 ms
10,624 KB |
ソースコード
c, d = [ int(v) for v in input().split() ] a = (20 * c - 8 * d) / 13 b = (-7 * c + 21 * d) / 13 amax = min(4 / 3 * c, 4 * d) bmax = min(7 / 2 * c, 7 / 5 * d) print(max(1000 * a + 2000 * b, 1000 * a, 2000 * b))