結果

問題 No.979 Longest Divisor Sequence
ユーザー 夜
提出日時 2020-12-17 17:39:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 106,340 KB
実行使用メモリ 4,744 KB
最終ジャッジ日時 2023-10-21 07:00:29
合計ジャッジ時間 2,528 ms
ジャッジサーバーID
(参考情報)
judge9 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 9 ms
4,744 KB
testcase_11 AC 10 ms
4,744 KB
testcase_12 AC 9 ms
4,740 KB
testcase_13 AC 47 ms
4,348 KB
testcase_14 AC 547 ms
4,744 KB
testcase_15 AC 186 ms
4,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

0