結果

問題 No.23 技の選択
ユーザー ぴろずぴろず
提出日時 2014-12-19 10:46:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-06-28 16:45:47
合計ジャッジ時間 7,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,164 KB
testcase_01 AC 125 ms
41,352 KB
testcase_02 AC 117 ms
40,336 KB
testcase_03 AC 133 ms
41,544 KB
testcase_04 AC 132 ms
41,552 KB
testcase_05 AC 130 ms
41,340 KB
testcase_06 AC 115 ms
40,436 KB
testcase_07 AC 114 ms
40,304 KB
testcase_08 AC 126 ms
40,184 KB
testcase_09 AC 131 ms
41,496 KB
testcase_10 AC 128 ms
41,052 KB
testcase_11 AC 122 ms
39,944 KB
testcase_12 AC 114 ms
40,176 KB
testcase_13 AC 129 ms
41,372 KB
testcase_14 AC 114 ms
40,428 KB
testcase_15 AC 124 ms
41,268 KB
testcase_16 AC 124 ms
41,344 KB
testcase_17 AC 135 ms
40,788 KB
testcase_18 AC 125 ms
41,188 KB
testcase_19 AC 113 ms
40,160 KB
testcase_20 AC 125 ms
41,088 KB
testcase_21 AC 117 ms
40,620 KB
testcase_22 AC 125 ms
41,424 KB
testcase_23 AC 128 ms
41,076 KB
testcase_24 AC 129 ms
41,532 KB
testcase_25 AC 127 ms
41,404 KB
testcase_26 AC 120 ms
40,464 KB
testcase_27 AC 124 ms
40,284 KB
testcase_28 AC 115 ms
40,044 KB
testcase_29 AC 127 ms
41,436 KB
testcase_30 AC 122 ms
40,872 KB
testcase_31 AC 120 ms
40,168 KB
testcase_32 AC 114 ms
40,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no023;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		double p = 0;
		double x = 2/3D;
		for(int i=1;i<=100;i++) {
			p += x * i;
			x /= 3;
		}
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int a = sc.nextInt();
		int d = sc.nextInt();
		double[] dp = new double[h+1];
		for(int i=1;i<=h;i++) {
			if (i <= a) {
				dp[i] = 1;
			}else{
				dp[i] = Math.min(dp[i-a]+1,dp[Math.max(i-d,0)]+p);
			}
		}
		System.out.println(dp[h]);
	}

}
0