結果
問題 | No.390 最長の数列 |
ユーザー | oxyshower |
提出日時 | 2020-01-13 19:14:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 511 bytes |
コンパイル時間 | 1,576 ms |
コンパイル使用メモリ | 172,248 KB |
実行使用メモリ | 11,912 KB |
最終ジャッジ日時 | 2024-12-21 13:53:59 |
合計ジャッジ時間 | 2,833 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 38 ms
11,776 KB |
testcase_06 | AC | 62 ms
11,904 KB |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
11,008 KB |
testcase_09 | AC | 5 ms
11,008 KB |
testcase_10 | WA | - |
testcase_11 | AC | 42 ms
11,808 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 4 ms
11,008 KB |
testcase_17 | AC | 6 ms
11,028 KB |
testcase_18 | AC | 8 ms
11,084 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #ifdef LOCAL_DEBUG #include "LOCAL_DEBUG.hpp" #endif #define int long long signed main(){ int n; cin >> n; vector<int> a(n); for(int i = 0; i < n; i++){ cin >> a[i]; } sort(a.begin(),a.end()); vector<int> v(1000001, 0); for(int i = 0; i < n; i++){ v[a[i]] = max(v[a[i]], 1LL); for(int j = a[i] * 2; j < 1000001; j+=a[i]){ v[j] = max(v[j], v[a[i]] + 1); } } cout << *max_element(v.begin(),v.end()) << endl; return 0; }