結果

問題 No.390 最長の数列
ユーザー te-shte-sh
提出日時 2017-07-26 16:16:10
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 107,800 KB
実行使用メモリ 15,752 KB
最終ジャッジ日時 2024-06-12 21:13:45
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 35 ms
13,804 KB
testcase_06 AC 85 ms
15,752 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 6 ms
11,136 KB
testcase_09 AC 7 ms
10,740 KB
testcase_10 AC 42 ms
14,076 KB
testcase_11 AC 42 ms
14,076 KB
testcase_12 AC 42 ms
15,284 KB
testcase_13 AC 24 ms
13,716 KB
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 5 ms
10,696 KB
testcase_17 AC 7 ms
11,372 KB
testcase_18 AC 8 ms
11,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto x = readln.split.to!(int[]);
  x.sort();

  auto maxX = x.back;

  auto b = new size_t[](maxX+1);
  b[] = n;
  foreach (i, xi; x) b[xi] = i;

  auto w = new int[](n);

  foreach (i, xi; x) {
    if (!w[i]) w[i] = 1;

    for (auto j = xi * 2; j <= maxX; j += xi)
      if (b[j] < n) w[b[j]] = max(w[b[j]], w[i] + 1);
  }

  writeln(w.maxElement);
}
0