結果

問題 No.555 世界史のレポート
ユーザー tentententen
提出日時 2020-09-07 23:41:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,167 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 73,680 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-05-07 00:20:38
合計ジャッジ時間 12,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,936 KB
testcase_01 AC 102 ms
39,736 KB
testcase_02 AC 120 ms
41,120 KB
testcase_03 AC 112 ms
40,820 KB
testcase_04 AC 117 ms
41,396 KB
testcase_05 AC 117 ms
41,156 KB
testcase_06 AC 114 ms
40,208 KB
testcase_07 AC 117 ms
40,972 KB
testcase_08 AC 110 ms
39,956 KB
testcase_09 AC 117 ms
41,184 KB
testcase_10 AC 651 ms
41,492 KB
testcase_11 AC 781 ms
41,248 KB
testcase_12 AC 645 ms
40,084 KB
testcase_13 AC 525 ms
40,532 KB
testcase_14 AC 835 ms
41,284 KB
testcase_15 AC 746 ms
40,764 KB
testcase_16 AC 676 ms
41,620 KB
testcase_17 AC 724 ms
41,796 KB
testcase_18 AC 779 ms
40,864 KB
testcase_19 AC 1,167 ms
40,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int copy;
    static int paste;
    static long[] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	copy = sc.nextInt();
    	paste = sc.nextInt();
    	dp = new long[n + 1];
    	System.out.println(dfw(n));
	}
	
	static long dfw(int x) {
	    if (x == 1) {
	        return 0;
	    }
	    if (dp[x] == 0) {
	        dp[x] = Long.MAX_VALUE;
	        for (int i = 1; i * 2 <= x + 1; i++) {
	            dp[x] = Math.min(dp[x], dfw(i) + (x - 1) / i * paste + copy);
	        }
	    }
	    return dp[x];
	}
	
}
0