結果
問題 | No.390 最長の数列 |
ユーザー | aim_cpo |
提出日時 | 2017-06-20 17:17:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,211 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 94,484 KB |
実行使用メモリ | 15,136 KB |
最終ジャッジ日時 | 2024-10-02 07:25:42 |
合計ジャッジ時間 | 7,999 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <cstdlib> #include <sstream> #include <string> #include <set> #include <map> #include <stack> #include <queue> #include <deque> #include <complex> #include <vector> #include <bitset> #include <cstdio> #include <cmath> #include <time.h> #include <tuple> #define all(c) ((c).begin(),(c).end()) #define rall(c) ((c).rbegin(),(c).rend()) #define ll long long #define fi first #define se second #define inf (999999999) using namespace std; const ll MOD = 1e9 + 7; const double PI = acos(-1.0); //---------------------------------------------------------------------------------------------// int n; int a[100001]; int solve(int nown,int lastnumber,int s) { if (nown == n) { return s; } if (lastnumber == 0) { int res=max(solve(nown + 1, a[nown], 1), solve(nown + 1, 0, 0)); return res; } else { int res; if (a[nown] % lastnumber == 0) { res = max(solve(nown + 1, a[nown], s + 1), solve(nown + 1, lastnumber, s)); } else { res = solve(nown + 1, lastnumber, s); } return res; } } int main() { cin >> n; for (int i = 0; i < n; i++) { cin >> a[i]; } sort(a, a + n); cout << solve(0,0,0) << endl; return 0; }