結果

問題 No.555 世界史のレポート
ユーザー htensaihtensai
提出日時 2020-01-30 19:23:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 51,208 KB
最終ジャッジ日時 2024-09-16 03:48:07
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,760 KB
testcase_01 AC 52 ms
49,708 KB
testcase_02 AC 52 ms
50,240 KB
testcase_03 AC 53 ms
49,992 KB
testcase_04 AC 53 ms
50,100 KB
testcase_05 AC 53 ms
50,252 KB
testcase_06 AC 53 ms
50,160 KB
testcase_07 AC 54 ms
50,120 KB
testcase_08 AC 54 ms
49,760 KB
testcase_09 AC 53 ms
50,240 KB
testcase_10 AC 67 ms
51,152 KB
testcase_11 AC 68 ms
51,208 KB
testcase_12 AC 70 ms
50,908 KB
testcase_13 AC 70 ms
51,008 KB
testcase_14 AC 79 ms
51,004 KB
testcase_15 AC 69 ms
50,980 KB
testcase_16 AC 77 ms
50,668 KB
testcase_17 AC 70 ms
50,732 KB
testcase_18 AC 71 ms
51,036 KB
testcase_19 AC 71 ms
50,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] first = br.readLine().split(" ", 2);
        int c = Integer.parseInt(first[0]);
        int v = Integer.parseInt(first[1]);
        int[] dp = new int[n * 2];
        Arrays.fill(dp, Integer.MAX_VALUE);
        dp[1] = 0;
        for (int i = 1; i < n; i++) {
            int cur = i;
            int cost = dp[i] + c;
            while (cur < n) {
                cur += i;
                cost += v;
                dp[cur] = Math.min(dp[cur], cost);
            }
        }
        int min = Integer.MAX_VALUE;
        for (int i = n; i < dp.length; i++) {
            min = Math.min(min, dp[i]);
        }
        System.out.println(min);
    }
}
0