結果

問題 No.23 技の選択
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-13 15:17:37
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 592 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-09-24 16:57:12
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 126 ms
54,132 KB
testcase_02 AC 122 ms
54,160 KB
testcase_03 AC 123 ms
54,132 KB
testcase_04 AC 123 ms
54,216 KB
testcase_05 AC 119 ms
54,032 KB
testcase_06 AC 119 ms
54,316 KB
testcase_07 RE -
testcase_08 AC 122 ms
54,180 KB
testcase_09 AC 125 ms
54,392 KB
testcase_10 AC 121 ms
53,900 KB
testcase_11 AC 110 ms
53,024 KB
testcase_12 RE -
testcase_13 AC 116 ms
52,716 KB
testcase_14 AC 122 ms
54,148 KB
testcase_15 AC 125 ms
54,308 KB
testcase_16 AC 114 ms
52,748 KB
testcase_17 AC 113 ms
52,972 KB
testcase_18 AC 126 ms
54,132 KB
testcase_19 AC 111 ms
53,128 KB
testcase_20 RE -
testcase_21 AC 123 ms
53,880 KB
testcase_22 AC 124 ms
54,140 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 109 ms
52,788 KB
testcase_26 RE -
testcase_27 AC 120 ms
54,256 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 126 ms
54,256 KB
testcase_31 AC 124 ms
54,144 KB
testcase_32 AC 111 ms
53,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 ans = (H + A - 1) / A;
    if(A < D) {
      double[] dp = new double[H + 1];
      for(int i = 1; i <= A; i++) {
        dp[i] = 1;
      }
      for(int i = A + 1; i <= D; i++) {
        dp[i] = 1.5;
      }
      for(int i = D + 1; i < H + 1; i++) {
        dp[i] = Math.min(1 + dp[i - A], 1.5 + dp[i - D]);
      }
      ans = dp[H];
    }
    System.out.println(ans);
  }
}
0