結果

問題 No.390 最長の数列
ユーザー ikdikd
提出日時 2017-11-14 18:44:38
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 721 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 1,076 ms
コンパイル使用メモリ 105,880 KB
実行使用メモリ 7,692 KB
最終ジャッジ日時 2024-06-12 22:32:15
合計ジャッジ時間 3,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
6,812 KB
testcase_01 AC 16 ms
6,944 KB
testcase_02 AC 33 ms
6,944 KB
testcase_03 AC 27 ms
6,940 KB
testcase_04 AC 34 ms
6,944 KB
testcase_05 AC 50 ms
7,584 KB
testcase_06 AC 607 ms
7,556 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 16 ms
6,940 KB
testcase_10 AC 112 ms
7,560 KB
testcase_11 AC 124 ms
7,556 KB
testcase_12 AC 117 ms
7,692 KB
testcase_13 AC 149 ms
6,940 KB
testcase_14 AC 721 ms
7,428 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  int n; rd(n);
  auto a=readln.split.to!(int[]);

  auto rec=new int[](n);
  fill(rec, 1);
  sort(a);
  size_t[int] pos;
  foreach(i, e; a) pos[e]=i;
  foreach(i, e; a){
    for(auto t=2; e*t<=1_000_000; t++){
      if(e*t in pos){
        auto j=pos[e*t];
        rec[j]=max(rec[j], rec[i]+1);
      }
    }
  }

  writeln(reduce!(max)(rec));
}

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