結果

問題 No.390 最長の数列
ユーザー noriocnorioc
提出日時 2018-01-28 02:30:18
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 578 ms / 5,000 ms
コード長 686 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 109,576 KB
実行使用メモリ 15,344 KB
最終ジャッジ日時 2024-06-12 23:40:35
合計ジャッジ時間 2,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 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 56 ms
13,300 KB
testcase_06 AC 578 ms
13,268 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 19 ms
6,944 KB
testcase_10 AC 115 ms
15,344 KB
testcase_11 AC 131 ms
13,352 KB
testcase_12 AC 123 ms
15,260 KB
testcase_13 AC 163 ms
13,848 KB
testcase_14 AC 108 ms
10,628 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 8 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm;
import std.array;
import std.conv;
import std.math;
import std.range;
import std.stdio;
import std.string;
import std.typecons;

int readint() { return readln.chomp.to!int; }
int[] readints() { return readln.split.to!(int[]); }

int calc(int[] xs) {
    auto dp = new int[xs.maxElement + 1];

    bool[int] m;
    foreach (x; xs) m[x] = true;

    foreach (x; xs.sort!((a, b) => a > b)) {
        for (int i = x; i < dp.length; i += x) {
            if (i in m) {
                dp[x] = max(dp[x], dp[i] + 1);
            }
        }
    }
    return dp.maxElement;
}

void main() {
    readint;
    auto xs = readints;
    int ans = calc(xs);
    writeln(ans);
}
0