結果

問題 No.453 製薬会社
ユーザー fal_rndfal_rnd
提出日時 2016-12-06 22:56:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 5,519 ms
コンパイル使用メモリ 84,496 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-11-28 03:17:33
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,428 KB
testcase_01 AC 104 ms
40,096 KB
testcase_02 AC 103 ms
40,448 KB
testcase_03 AC 110 ms
40,172 KB
testcase_04 AC 113 ms
40,076 KB
testcase_05 AC 125 ms
41,360 KB
testcase_06 AC 128 ms
40,104 KB
testcase_07 AC 129 ms
41,432 KB
testcase_08 AC 124 ms
41,192 KB
testcase_09 AC 112 ms
40,092 KB
testcase_10 AC 129 ms
41,432 KB
testcase_11 AC 117 ms
40,220 KB
testcase_12 AC 129 ms
41,192 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