結果

問題 No.23 技の選択
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-13 15:21:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 2,760 ms
コンパイル使用メモリ 80,128 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-28 17:24:43
合計ジャッジ時間 7,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,356 KB
testcase_01 AC 115 ms
41,548 KB
testcase_02 AC 129 ms
41,436 KB
testcase_03 AC 126 ms
41,788 KB
testcase_04 AC 103 ms
41,240 KB
testcase_05 AC 124 ms
41,680 KB
testcase_06 AC 120 ms
40,144 KB
testcase_07 AC 122 ms
41,340 KB
testcase_08 AC 112 ms
41,168 KB
testcase_09 AC 120 ms
41,544 KB
testcase_10 AC 128 ms
41,344 KB
testcase_11 AC 128 ms
41,292 KB
testcase_12 AC 129 ms
41,644 KB
testcase_13 AC 128 ms
41,320 KB
testcase_14 AC 123 ms
41,272 KB
testcase_15 AC 128 ms
41,244 KB
testcase_16 AC 119 ms
40,320 KB
testcase_17 AC 131 ms
41,600 KB
testcase_18 AC 125 ms
41,272 KB
testcase_19 AC 124 ms
41,600 KB
testcase_20 AC 127 ms
41,504 KB
testcase_21 AC 122 ms
41,500 KB
testcase_22 AC 121 ms
41,464 KB
testcase_23 AC 125 ms
41,688 KB
testcase_24 AC 123 ms
41,532 KB
testcase_25 AC 128 ms
41,548 KB
testcase_26 AC 128 ms
41,308 KB
testcase_27 AC 128 ms
41,416 KB
testcase_28 AC 119 ms
41,484 KB
testcase_29 AC 118 ms
41,596 KB
testcase_30 AC 126 ms
41,408 KB
testcase_31 AC 128 ms
41,312 KB
testcase_32 AC 126 ms
41,508 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 <= Math.min(A, H); i++) {
        dp[i] = 1;
      }
      for(int i = A + 1; i <= Math.min(D, H); 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