結果

問題 No.453 製薬会社
ユーザー fal_rndfal_rnd
提出日時 2016-12-06 22:56:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-05-06 01:24:39
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,008 KB
testcase_01 AC 135 ms
41,064 KB
testcase_02 AC 134 ms
41,552 KB
testcase_03 AC 136 ms
41,140 KB
testcase_04 AC 133 ms
41,248 KB
testcase_05 AC 136 ms
41,284 KB
testcase_06 AC 133 ms
41,632 KB
testcase_07 AC 134 ms
41,412 KB
testcase_08 AC 133 ms
41,120 KB
testcase_09 AC 135 ms
41,148 KB
testcase_10 AC 135 ms
41,148 KB
testcase_11 AC 135 ms
41,376 KB
testcase_12 AC 135 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class C{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int c=s.nextInt(),d=s.nextInt();
		if(c*5<=2*d)
			System.out.printf("%.10f",c*7000.0);
		else if(3*d<=c)
			System.out.printf("%.10f",d*4000.0);
		else
			System.out.printf("%.10f",(c*6000+d*34000)/13.0);
	}
}
0