結果
問題 | No.23 技の選択 |
ユーザー | kou6839 |
提出日時 | 2014-11-22 18:41:55 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 437 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 74,244 KB |
実行使用メモリ | 41,796 KB |
最終ジャッジ日時 | 2024-06-28 16:45:37 |
合計ジャッジ時間 | 7,370 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
import java.util.*; public class Main { 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 [] dp = new double[20001]; Arrays.fill(dp,0,10000,0); Arrays.fill(dp, 10001,20000,999999); for(int i=10001;i<20001;i++){ dp[i]=Math.min(1+dp[i-a], 1.5+dp[i-d]); } System.out.println(dp[10000+h]); } }