結果

問題 No.23 技の選択
ユーザー GrenacheGrenache
提出日時 2016-03-12 11:20:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 3,771 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-28 16:52:10
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,324 KB
testcase_01 AC 131 ms
41,076 KB
testcase_02 AC 127 ms
41,176 KB
testcase_03 AC 118 ms
40,304 KB
testcase_04 AC 134 ms
41,272 KB
testcase_05 AC 138 ms
41,124 KB
testcase_06 AC 136 ms
41,128 KB
testcase_07 AC 130 ms
41,220 KB
testcase_08 AC 131 ms
41,316 KB
testcase_09 AC 131 ms
41,536 KB
testcase_10 AC 132 ms
41,448 KB
testcase_11 AC 130 ms
41,288 KB
testcase_12 AC 120 ms
40,144 KB
testcase_13 AC 130 ms
41,248 KB
testcase_14 AC 131 ms
41,536 KB
testcase_15 AC 131 ms
41,072 KB
testcase_16 AC 131 ms
40,952 KB
testcase_17 AC 124 ms
40,956 KB
testcase_18 AC 125 ms
40,192 KB
testcase_19 AC 129 ms
41,028 KB
testcase_20 AC 110 ms
40,012 KB
testcase_21 AC 127 ms
41,184 KB
testcase_22 AC 131 ms
41,400 KB
testcase_23 AC 121 ms
40,120 KB
testcase_24 AC 129 ms
41,256 KB
testcase_25 AC 129 ms
41,684 KB
testcase_26 AC 117 ms
40,444 KB
testcase_27 AC 128 ms
41,232 KB
testcase_28 AC 127 ms
41,168 KB
testcase_29 AC 123 ms
40,060 KB
testcase_30 AC 122 ms
40,996 KB
testcase_31 AC 129 ms
41,696 KB
testcase_32 AC 129 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder23 {

    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[] e = new double[h + 1];
        e[0] = 0;

        for (int i = 1; i <= h; i++) {
        	e[i] = Math.min(1 + e[Math.max(0, i - a)], (double)3 / 2 + e[Math.max(0, i - d)]);
        }

        System.out.printf("%.3f\n", e[h]);

        sc.close();
    }
}
0