結果

問題 No.555 世界史のレポート
ユーザー ikdikd
提出日時 2017-11-30 09:24:01
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 85,080 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-03 17:07:09
合計ジャッジ時間 1,579 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 4 ms
4,376 KB
testcase_12 AC 4 ms
4,376 KB
testcase_13 AC 3 ms
4,376 KB
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 3 ms
4,376 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 4 ms
4,376 KB
testcase_19 AC 5 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;

  int n; rd(n);
  int c, v; rd(c, v);

  auto rec=new int[](3*n);
  fill(rec, 1_000_000_000);
  rec[0]=rec[1]=0;
  foreach(i; 1..n)for(int j=1; i*(1+j)<=n*2; j++){
    chmin(rec[i*(1+j)], rec[i]+c+v*j);
  }

  writeln(reduce!(min)(rec[n..(2*n+1)]));
}

void chmin(T)(ref T x, T y){
  if(x>y) x=y;
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0