結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | unolight |
提出日時 | 2021-07-08 11:40:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 442 ms / 2,000 ms |
コード長 | 674 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 71,328 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 12:29:05 |
合計ジャッジ時間 | 2,173 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 8 ms
6,944 KB |
testcase_11 | AC | 8 ms
6,940 KB |
testcase_12 | AC | 9 ms
6,940 KB |
testcase_13 | AC | 21 ms
6,940 KB |
testcase_14 | AC | 442 ms
6,940 KB |
testcase_15 | AC | 148 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; const int MAX=300010; int d[MAX]; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin>>n; vector<int> a(n); for ( int i=0; i<n; i++ ) cin>>a[i]; for ( int i=0; i<n; i++ ) { int res=1; for ( int j=1; j*j<=a[i]; j++ ) { if ( j<a[i] && a[i]%j==0 ) { res=max(res,d[j]+1); if ( a[i]/j<a[i] && a[i]/j!=j ) res=max(res,d[a[i]/j]+1); } } d[a[i]]=max(d[a[i]],res); } int ans=0; for ( int i=1; i<MAX; i++ ) ans=max(ans,d[i]); cout<<ans<<'\n'; return 0; }