結果

問題 No.23 技の選択
ユーザー kou6839kou6839
提出日時 2014-11-22 18:41:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-06-28 16:45:37
合計ジャッジ時間 7,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,520 KB
testcase_01 AC 121 ms
40,332 KB
testcase_02 AC 123 ms
40,172 KB
testcase_03 AC 130 ms
41,396 KB
testcase_04 AC 119 ms
40,276 KB
testcase_05 AC 128 ms
41,600 KB
testcase_06 AC 130 ms
41,572 KB
testcase_07 AC 130 ms
41,796 KB
testcase_08 AC 128 ms
41,624 KB
testcase_09 AC 129 ms
41,336 KB
testcase_10 AC 132 ms
41,664 KB
testcase_11 AC 137 ms
41,436 KB
testcase_12 AC 117 ms
40,176 KB
testcase_13 AC 128 ms
41,612 KB
testcase_14 AC 130 ms
41,560 KB
testcase_15 AC 123 ms
40,276 KB
testcase_16 AC 126 ms
41,444 KB
testcase_17 AC 130 ms
41,436 KB
testcase_18 AC 135 ms
41,276 KB
testcase_19 AC 130 ms
41,308 KB
testcase_20 AC 118 ms
40,276 KB
testcase_21 AC 117 ms
40,116 KB
testcase_22 AC 132 ms
41,304 KB
testcase_23 AC 131 ms
41,436 KB
testcase_24 AC 132 ms
41,396 KB
testcase_25 AC 138 ms
41,380 KB
testcase_26 AC 131 ms
41,440 KB
testcase_27 AC 133 ms
41,672 KB
testcase_28 AC 129 ms
41,344 KB
testcase_29 AC 115 ms
40,516 KB
testcase_30 AC 116 ms
40,536 KB
testcase_31 AC 127 ms
41,304 KB
testcase_32 AC 132 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int a = sc.nextInt();
		int d = sc.nextInt();
		double [] dp = new double[20001];
		Arrays.fill(dp,0,10000,0);
		Arrays.fill(dp, 10001,20000,999999);
		for(int i=10001;i<20001;i++){
			dp[i]=Math.min(1+dp[i-a], 1.5+dp[i-d]);
		}
		System.out.println(dp[10000+h]);
	}
}
0