結果

問題 No.23 技の選択
ユーザー mits58mits58
提出日時 2015-12-11 22:38:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 575 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-06-28 16:49:49
合計ジャッジ時間 7,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static double h,a,d;
	static double dp[];
	static double res(double x){
		if(x>=h) return 0;
		else if(dp[(int)x]!=-1) return dp[(int)x];
		else return dp[(int)x]=Math.min(res(x+a)+1, res(x+d)+1.5);
	}
    public static void main(String[] args){
    	Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	h=sc.nextDouble();
        	a=sc.nextDouble();
        	d=sc.nextDouble();
        	dp=new double[(int)h+1];
        	for(int i=0;i<=h;i++) dp[i]=-1;
        	System.out.println(res(0));
        }
    }
}
0