結果

問題 No.555 世界史のレポート
ユーザー 37zigen37zigen
提出日時 2017-08-12 02:10:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 77,504 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-12 22:55:12
合計ジャッジ時間 5,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,008 KB
testcase_01 AC 121 ms
54,096 KB
testcase_02 AC 125 ms
54,196 KB
testcase_03 AC 125 ms
53,920 KB
testcase_04 AC 129 ms
54,024 KB
testcase_05 AC 123 ms
54,048 KB
testcase_06 AC 123 ms
54,024 KB
testcase_07 AC 108 ms
52,844 KB
testcase_08 AC 125 ms
53,780 KB
testcase_09 AC 124 ms
53,880 KB
testcase_10 AC 137 ms
54,148 KB
testcase_11 AC 138 ms
54,076 KB
testcase_12 AC 142 ms
53,988 KB
testcase_13 AC 137 ms
54,000 KB
testcase_14 AC 136 ms
54,240 KB
testcase_15 AC 140 ms
54,068 KB
testcase_16 AC 139 ms
53,948 KB
testcase_17 AC 143 ms
54,068 KB
testcase_18 AC 144 ms
53,892 KB
testcase_19 AC 140 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int c = sc.nextInt();
		int v = sc.nextInt();
		int[] dp = new int[2 * n - 2 + 1];
		Arrays.fill(dp, Integer.MAX_VALUE / 16);
		dp[1] = 0;
		for (int i = 1; i < dp.length; ++i) {
			for (int j = i * 2; j < dp.length; j += i) {
				dp[j] = Math.min(dp[j], dp[i] + (j / i - 1) * v + c);
			}
		}
		long ans = Long.MAX_VALUE / 16;
		for (int i = n; i < dp.length; ++i) {
			ans = Math.min(ans, dp[i]);
		}
		System.out.println(ans);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}
}
0