結果

問題 No.555 世界史のレポート
ユーザー fal_rndfal_rnd
提出日時 2017-08-11 22:49:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 88,188 KB
実行使用メモリ 42,404 KB
最終ジャッジ日時 2024-10-12 21:33:35
合計ジャッジ時間 5,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,268 KB
testcase_01 AC 127 ms
41,228 KB
testcase_02 AC 129 ms
41,400 KB
testcase_03 AC 130 ms
41,524 KB
testcase_04 AC 116 ms
40,348 KB
testcase_05 AC 132 ms
41,324 KB
testcase_06 AC 131 ms
41,280 KB
testcase_07 AC 130 ms
41,656 KB
testcase_08 AC 130 ms
41,220 KB
testcase_09 AC 129 ms
41,264 KB
testcase_10 AC 148 ms
42,124 KB
testcase_11 AC 151 ms
42,052 KB
testcase_12 AC 145 ms
42,016 KB
testcase_13 AC 144 ms
41,924 KB
testcase_14 AC 146 ms
42,036 KB
testcase_15 AC 147 ms
42,064 KB
testcase_16 AC 141 ms
41,772 KB
testcase_17 AC 148 ms
41,760 KB
testcase_18 AC 150 ms
42,136 KB
testcase_19 AC 156 ms
42,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	public static void main(String[]$){
		int n=getInt();
		long c=getInt(),v=getInt();
		long[]dp=new long[n*2+1];
		Arrays.fill(dp,Long.MAX_VALUE);
		dp[1]=0;
		for(int i=1;i<=n*2;++i){
			for(int j=1;j*i+i<=n*2;++j) {
				dp[j*i+i]=Math.min(dp[j*i+i],dp[i]+c+v*j);
			}
		}
		System.out.println(REPS(n,n*2).mapToLong(i->dp[i]).min().getAsLong());
	}
}
0