結果

問題 No.23 技の選択
ユーザー htensaihtensai
提出日時 2020-02-10 15:52:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-01 06:25:37
合計ジャッジ時間 7,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,916 KB
testcase_01 AC 130 ms
41,304 KB
testcase_02 AC 128 ms
41,320 KB
testcase_03 AC 129 ms
41,600 KB
testcase_04 AC 126 ms
41,216 KB
testcase_05 AC 117 ms
40,264 KB
testcase_06 AC 125 ms
41,088 KB
testcase_07 AC 125 ms
41,244 KB
testcase_08 AC 122 ms
41,040 KB
testcase_09 AC 125 ms
41,360 KB
testcase_10 AC 118 ms
41,068 KB
testcase_11 AC 119 ms
41,296 KB
testcase_12 AC 118 ms
41,276 KB
testcase_13 AC 107 ms
40,912 KB
testcase_14 AC 122 ms
41,212 KB
testcase_15 AC 125 ms
40,964 KB
testcase_16 AC 127 ms
41,380 KB
testcase_17 AC 127 ms
41,316 KB
testcase_18 AC 128 ms
41,296 KB
testcase_19 AC 129 ms
41,524 KB
testcase_20 AC 130 ms
41,284 KB
testcase_21 AC 121 ms
40,044 KB
testcase_22 AC 120 ms
41,232 KB
testcase_23 AC 127 ms
41,072 KB
testcase_24 AC 124 ms
41,372 KB
testcase_25 AC 128 ms
41,056 KB
testcase_26 AC 111 ms
41,040 KB
testcase_27 AC 120 ms
41,544 KB
testcase_28 AC 115 ms
40,220 KB
testcase_29 AC 128 ms
41,204 KB
testcase_30 AC 127 ms
41,424 KB
testcase_31 AC 126 ms
41,292 KB
testcase_32 AC 125 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static double[] dp;
    static int a;
    static int d;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		a = sc.nextInt();
		d = sc.nextInt();
		dp = new double[h + 1];
		System.out.println(dfw(h));
   }
   static double dfw(int power) {
       if (power <= 0) {
           return 0;
       }
       if (dp[power] != 0) {
           return dp[power];
       }
       dp[power] = Math.min(dfw(power - a) + 1, dfw(power - d) + 1.5);
       return dp[power];
   }
}
0