結果

問題 No.390 最長の数列
ユーザー potoooooooopotoooooooo
提出日時 2019-01-18 00:52:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 1,561 ms
コンパイル使用メモリ 166,880 KB
実行使用メモリ 7,288 KB
最終ジャッジ日時 2024-07-01 10:13:10
合計ジャッジ時間 3,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
7,128 KB
testcase_01 AC 32 ms
7,192 KB
testcase_02 AC 32 ms
7,164 KB
testcase_03 AC 33 ms
7,108 KB
testcase_04 AC 32 ms
7,124 KB
testcase_05 AC 64 ms
7,192 KB
testcase_06 AC 81 ms
7,064 KB
testcase_07 WA -
testcase_08 AC 32 ms
7,240 KB
testcase_09 AC 32 ms
7,244 KB
testcase_10 AC 87 ms
7,216 KB
testcase_11 AC 87 ms
7,124 KB
testcase_12 AC 88 ms
7,184 KB
testcase_13 AC 57 ms
7,288 KB
testcase_14 AC 60 ms
7,124 KB
testcase_15 AC 32 ms
7,148 KB
testcase_16 AC 32 ms
7,092 KB
testcase_17 AC 35 ms
7,200 KB
testcase_18 AC 36 ms
7,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n; cin >> n;
    vector<int> v(1000010, 0);
    for (int i = 0; i < n; i++) {
        int k; cin >> k;
        v[k]++;
    }
    int ans = 0;
    for (int i = 1; i < 1000010; i++) {
        for (int j = 2; i * j < 1000010; j++) {
            if (v[i*j] > 0) v[i*j] = max(v[i*j], v[i]+1);
            ans = max(ans, v[i*j]);
        }
    }
    cout << ans << endl;
    return 0;
}
0