結果

問題 No.23 技の選択
ユーザー tentententen
提出日時 2021-03-05 18:17:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 1,303 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 78,984 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-10-06 19:43:08
合計ジャッジ時間 7,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,044 KB
testcase_01 AC 109 ms
40,992 KB
testcase_02 AC 111 ms
40,000 KB
testcase_03 AC 139 ms
41,460 KB
testcase_04 AC 123 ms
40,812 KB
testcase_05 AC 122 ms
41,364 KB
testcase_06 AC 103 ms
40,160 KB
testcase_07 AC 115 ms
41,076 KB
testcase_08 AC 99 ms
39,836 KB
testcase_09 AC 122 ms
40,692 KB
testcase_10 AC 104 ms
40,048 KB
testcase_11 AC 115 ms
40,960 KB
testcase_12 AC 118 ms
41,100 KB
testcase_13 AC 116 ms
40,852 KB
testcase_14 AC 115 ms
40,896 KB
testcase_15 AC 108 ms
41,156 KB
testcase_16 AC 118 ms
40,952 KB
testcase_17 AC 110 ms
40,684 KB
testcase_18 AC 116 ms
41,152 KB
testcase_19 AC 114 ms
41,192 KB
testcase_20 AC 108 ms
41,124 KB
testcase_21 AC 111 ms
41,084 KB
testcase_22 AC 113 ms
40,640 KB
testcase_23 AC 118 ms
41,068 KB
testcase_24 AC 120 ms
40,868 KB
testcase_25 AC 128 ms
41,204 KB
testcase_26 AC 120 ms
40,980 KB
testcase_27 AC 115 ms
41,100 KB
testcase_28 AC 103 ms
40,092 KB
testcase_29 AC 99 ms
39,700 KB
testcase_30 AC 103 ms
39,960 KB
testcase_31 AC 109 ms
40,960 KB
testcase_32 AC 102 ms
39,672 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();
        TreeMap<Double, Integer> status = new TreeMap<>();
        status.put(0.0, h);
        double ans = Double.MAX_VALUE;
        while (status.size() > 0) {
            Map.Entry<Double, Integer> entry = status.pollFirstEntry();
            if (entry.getValue() <= a) {
                ans = Math.min(entry.getKey() + 1, ans);
            } else {
                double nextKey = entry.getKey() + 1;
                int nextValue = entry.getValue() - a;
                if (!status.containsKey(nextKey) || status.get(nextKey) > nextValue) {
                    status.put(nextKey, nextValue);
                }
            }
            if (entry.getValue() <= d) {
                ans = Math.min(entry.getKey() + 1.5, ans);
            } else {
                double nextKey = entry.getKey() + 1.5;
                int nextValue = entry.getValue() - d;
                if (!status.containsKey(nextKey) || status.get(nextKey) > nextValue) {
                    status.put(nextKey, nextValue);
                }
            }
        }
        System.out.println(ans);
    }
}
0