結果
問題 | No.23 技の選択 |
ユーザー | mits58 |
提出日時 | 2015-12-11 22:36:55 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 564 bytes |
コンパイル時間 | 2,530 ms |
コンパイル使用メモリ | 77,028 KB |
実行使用メモリ | 61,340 KB |
最終ジャッジ日時 | 2024-09-15 08:26:50 |
合計ジャッジ時間 | 9,607 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
53,420 KB |
testcase_01 | AC | 144 ms
54,276 KB |
testcase_02 | AC | 145 ms
56,044 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
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 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)); } } }