結果

問題 No.555 世界史のレポート
ユーザー GrenacheGrenache
提出日時 2017-08-12 11:51:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 78,404 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-10-13 04:46:32
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,216 KB
testcase_01 AC 119 ms
40,996 KB
testcase_02 AC 123 ms
41,052 KB
testcase_03 AC 124 ms
41,712 KB
testcase_04 AC 123 ms
41,324 KB
testcase_05 AC 126 ms
41,028 KB
testcase_06 AC 125 ms
41,420 KB
testcase_07 AC 124 ms
41,036 KB
testcase_08 AC 110 ms
41,344 KB
testcase_09 AC 111 ms
40,008 KB
testcase_10 AC 135 ms
41,584 KB
testcase_11 AC 137 ms
41,432 KB
testcase_12 AC 132 ms
41,720 KB
testcase_13 AC 136 ms
41,548 KB
testcase_14 AC 134 ms
41,320 KB
testcase_15 AC 139 ms
41,200 KB
testcase_16 AC 136 ms
41,368 KB
testcase_17 AC 135 ms
41,680 KB
testcase_18 AC 131 ms
41,436 KB
testcase_19 AC 138 ms
41,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder555_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int INF = Integer.MAX_VALUE;

		int n = sc.nextInt();
		int c = sc.nextInt();
		int v = sc.nextInt();

		int[] dp = new int[n];
		Arrays.fill(dp, INF);
		dp[0] = 0;

		for (int i = 1; i < n; i++) {
			for (int j = 1; true; j++) {
				int next = i + i * j;
				next = Math.min(next, n);
				int cost = c + j * v;

				dp[next - 1] = Math.min(dp[next - 1], dp[i - 1] + cost);
				if (next == n) {
					break;
				}
			}
		}

		pr.println(dp[n - 1]);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0