結果
問題 | No.390 最長の数列 |
ユーザー | E31415926 |
提出日時 | 2016-11-06 14:08:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,450 bytes |
コンパイル時間 | 1,705 ms |
コンパイル使用メモリ | 171,988 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-03 22:20:52 |
合計ジャッジ時間 | 8,254 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,420 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 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 <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) for (int i=0;i<(n);i++) #define rep(i,n) for (int i=0;i<(n);i++) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define ALL(a) (a).begin(),(a).end() #define all(a) (a).begin(),(a).end() #define EXIST(s,e) (find(all(s),(e))!=(s).end()) #define exist(s,e) (find(all(s),(e))!=(s).end()) #define INF (1<<25) #define ll long long #define vs vector<string> #define vi vector<int> #define vi2 vector<vector<int>> #define vll vector<ll> #define vll2 vector<vector<ll>> #define vb vector<bool> #define v2Resize(s,x,y) s.resize(x); REP(i,s.size()) s[i].resize(y); #define v2Fill(s,v) REP(i,s.size()) fill(all(s[i]),v); #define V vector #define Pii pair<int,int> #define P pair; #define in(x) cin>>x; #define in1(x,m) REP(i,m){int tmp; cin>>tmp; x.push_back(tmp);} #define in2(v2,x,y) REP(i,x) REP(j,y) cin>>v2[i][j]; #define OUT2(v2) REP(i,v2.size()){ REP(j,v2[i].size()){ cout<<v2[i][j] << " ";}cout<<endl;}; const int mod = 1000000007; int dy4[] = {0, 0, 1, -1}; int dx4[] = {1, -1, 0, 0}; int dx8[] = {0,1,1,1,0,-1,-1,-1}; int dy8[] = {-1,-1,0,1,1,1,0,-1}; int n; vi x; vi dp; int main() { in(n); in1(x, n); sort(all(x)); dp.resize(n); rep(i,n) { int m = 0; rep(j,i) { if (x[i] % x[j] == 0) { m = max(m, dp[j]); } } dp[i] = m + 1; } cout << *max_element(all(dp)) << endl; }