結果

問題 No.979 Longest Divisor Sequence
ユーザー V_MelvilleV_Melville
提出日時 2021-11-14 21:28:12
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 247,360 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-30 06:27:07
合計ジャッジ時間 12,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
12,324 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 AC 2 ms
12,320 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 18 ms
6,816 KB
testcase_11 AC 18 ms
6,816 KB
testcase_12 AC 18 ms
6,816 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::vector;

inline void chmax(int& x, int y) { if (x < y) x = y; }

int main() {
	int n;
	cin >> n;
	
	vector<int> a(n);
	rep(i, n) cin >> a[i];
	
	vector<int> dp(n);
	rep(i, n) {
		dp[i] = 1;
		rep(j, i) {
		    if (a[i] == a[j]) continue;
			if (a[i] % a[j] == 0)
			   chmax(dp[i], dp[j] + 1);
		}
	}
	
	int ans = *max_element(dp.begin(), dp.end());
	cout << ans << '\n';
	
	return 0;
}
0