結果

問題 No.390 最長の数列
ユーザー fal_rndfal_rnd
提出日時 2016-12-28 00:07:08
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 682 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 61,348 KB
最終ジャッジ日時 2024-05-08 21:24:30
合計ジャッジ時間 9,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,704 KB
testcase_01 AC 129 ms
41,144 KB
testcase_02 AC 128 ms
41,308 KB
testcase_03 AC 118 ms
40,204 KB
testcase_04 AC 128 ms
41,208 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);

	static int[] inS,memo;
	public static void main(String[] args) {
		inS = new int[s.nextInt()];
		memo = new int[inS.length];
		{
			for(int i=0;i<inS.length;++i) inS[i]=Integer.parseInt(s.next());
			Arrays.sort(inS);
			Arrays.fill(memo, -1);
		}

		int r=Integer.MIN_VALUE;
		for(int i=0;i<inS.length;++i) {
			r=Math.max(r, dp(i));
		}
		System.out.println(r);
	}
	static int dp(int index){
		int d = inS[index];
		if(memo[index]<0) {
			int r=1;
			for(int i=index+1;i<inS.length;++i) {
				if(inS[i]%d==0)
					r=Math.max(r, dp(i)+1);
			}
			memo[index]=r;
		}
		return memo[index];
	}
}
0