結果

問題 No.453 製薬会社
ユーザー finefine
提出日時 2016-12-06 00:45:15
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-05 21:10:24
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 WA -
testcase_03 AC 78 ms
12,160 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 WA -
testcase_09 AC 77 ms
12,160 KB
testcase_10 AC 78 ms
12,160 KB
testcase_11 AC 78 ms
12,032 KB
testcase_12 AC 78 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

c,d=gets.split.map(&:to_f)
tmp1=5 * c - 2 * d
tmp2=3 * d - c
ca=tmp1*3
cb=tmp2*2
da=tmp1
db=tmp2*5
p [4000 * [ca,da * 3].min / 3, 1400 * [5 * cb, 2 * db].min, (4000 * tmp1 + 14000 * tmp2)].max / 13
0