結果

問題 No.979 Longest Divisor Sequence
ユーザー V_MelvilleV_Melville
提出日時 2021-11-14 21:28:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 245,060 KB
実行使用メモリ 250,436 KB
最終ジャッジ日時 2024-05-07 13:23:47
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

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