結果
問題 | No.979 Longest Divisor Sequence |
ユーザー |
|
提出日時 | 2020-12-17 17:39:05 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 559 ms / 2,000 ms |
コード長 | 750 bytes |
コンパイル時間 | 1,027 ms |
コンパイル使用メモリ | 102,504 KB |
最終ジャッジ日時 | 2025-01-17 02:27:27 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; int co[300030] = {}; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { int a; cin >> a; int m = 1; for (int j = 1; j * j <= a; j++) { if (a % j == 0) { if (a != 1 && m < co[j] + 1) { m = co[j] + 1; } if (j != 1 && m < co[a / j] + 1) { m = co[a / j] + 1; } } } co[a] = max(co[a], m); } int ans = 0; for (int i = 1; i < 300030; i++) { if (ans < co[i]) { ans = co[i]; } } cout << ans << endl; }