結果
問題 | No.390 最長の数列 |
ユーザー | yukkuriesu |
提出日時 | 2018-12-06 00:23:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,566 bytes |
コンパイル時間 | 1,511 ms |
コンパイル使用メモリ | 161,940 KB |
実行使用メモリ | 10,656 KB |
最終ジャッジ日時 | 2024-07-22 23:05:05 |
合計ジャッジ時間 | 8,245 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
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 rep(i,N) repf(i,0,N) #define reps(i,N) repfs(i,0,N) #define repf(i,a,b) for(int i=a;i<b;i++) #define repfs(i,a,b) for(int i=a+1;i<=b;i++) #define repr(i,N) for(int i=N-1;i>=0;i--) #define reprs(i,N) for(int i=N;i>0;i--) #define d(a) if(isDebugMode) cout<<#a<<"="<<a<<"." #define d2(a,b) if(isDebugMode) cout<<#a<<"="<<a<<","<<#b<<"="<<b<<"." #define d3(a,b,c) if(isDebugMode) cout<<#a<<"="<<a<<","<<#b<<"="<<b<<","<<#c<<"="<<c<<"." #define d4(a,b,c,d) if(isDebugMode) cout<<#a<<"="<<a<<","<<#b<<"="<<b<<","<<#c<<"="<<c<<","<<#d<<"="<<d<<"." #define da(arr,N){if(isDebugMode){rep(i,N){if(arr[i]==INF)printf("INF ");else cout<<arr[i]<<" ";} cout<<endl;}} #define da2(arr,N,M){if(isDebugMode)rep(i,N){rep(j,M){if(arr[i][j]==INF)printf(" INF");else printf(" %3d",arr[i][j]);}cout<<endl;}} #define pb push_back #define pob pop_back auto chmax =[](int &a,int b){ a = max(a, b);}; auto chmin =[](int &a,int b){ a = min(a, b);}; typedef long long ll; typedef pair<int,int> P; const int INF = 100000000; const int MOD = 1000000007; const int dx[4] = { 0, 1, 0,-1}; const int dy[4] = { 1, 0,-1, 0}; bool isDebugMode=1; //--------------------------------------// int n; int x[100000]; int dp[1000001]; void solve(){ sort(x,x+n); rep(i,n){ dp[x[i]]=1; reps(j,x[i]-1){ if((x[i]%j) != 0) continue; if(dp[j] != 0) { chmax(dp[x[i]],dp[j]+1); } } } da(dp,10); int m=0; reps(j,1000000){ chmax(m,dp[j]); } cout<<m<<endl; } int main(){ cin>>n; rep(i,n) { cin>>x[i]; } solve(); return 0; }