結果

問題 No.555 世界史のレポート
ユーザー tookunn_1213tookunn_1213
提出日時 2017-08-11 23:16:53
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,011 bytes
コンパイル時間 3,178 ms
コンパイル使用メモリ 78,668 KB
実行使用メモリ 743,096 KB
最終ジャッジ日時 2024-04-20 23:32:18
合計ジャッジ時間 13,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,860 KB
testcase_01 AC 47 ms
49,744 KB
testcase_02 AC 46 ms
49,828 KB
testcase_03 AC 60 ms
50,640 KB
testcase_04 AC 74 ms
50,780 KB
testcase_05 AC 70 ms
51,408 KB
testcase_06 AC 68 ms
39,744 KB
testcase_07 AC 72 ms
40,568 KB
testcase_08 AC 78 ms
41,400 KB
testcase_09 AC 83 ms
45,508 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {
	static final int INF = (int)1e9+7;
	int N,C,V;
	int[][] dp;

	public void solve() {
		N = nextInt();
		C = nextInt();
		V = nextInt();

		dp = new int[N + 1][N + 1];
		for(int i = 0;i < N + 1;i++){
			Arrays.fill(dp[i], INF);
		}
		dp[1][0] = 0;
		for(int i = 1;i < N;i++){
			for(int j = 0;j <= i;j++){
				dp[i][i] = Math.min(dp[i][i],dp[i][j] + C);
				int min = Math.min(N, i + j);
				dp[min][j] = Math.min(dp[min][j],dp[i][j] + V);
			}
		}

		int ans = INF;
		for(int i = 0;i <= N;i++){
			ans = Math.min(ans,dp[N][i]);
		}

		out.println(ans);
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0