結果

問題 No.390 最長の数列
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-09 03:14:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 701 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 3,159 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 55,664 KB
最終ジャッジ日時 2024-07-08 00:45:07
合計ジャッジ時間 11,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
44,388 KB
testcase_01 AC 137 ms
45,312 KB
testcase_02 AC 137 ms
45,312 KB
testcase_03 AC 128 ms
44,408 KB
testcase_04 AC 142 ms
45,240 KB
testcase_05 AC 622 ms
52,252 KB
testcase_06 AC 670 ms
55,664 KB
testcase_07 AC 136 ms
45,372 KB
testcase_08 AC 131 ms
45,028 KB
testcase_09 AC 137 ms
45,196 KB
testcase_10 AC 699 ms
52,452 KB
testcase_11 AC 676 ms
52,456 KB
testcase_12 AC 685 ms
52,352 KB
testcase_13 AC 525 ms
51,876 KB
testcase_14 AC 701 ms
53,084 KB
testcase_15 AC 137 ms
45,432 KB
testcase_16 AC 147 ms
45,464 KB
testcase_17 AC 246 ms
50,072 KB
testcase_18 AC 271 ms
50,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No390{
	public static void main(String[] args){
		int max_x = 1000000;
		
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int[] x = new int[n];
		for(int i = 0; i < n; i++){
			x[i] = sc.nextInt();
		}
		Arrays.sort(x);

		int[] dp = new int[max_x+1];
		for(int i:x){
			dp[i] = 1;
		}

		int ans = 0;
		for(int i = 0; i <= max_x; i++){
			if(dp[i] <= 0){
				continue;
			}
			for(int j = i*2; j <= max_x; j += i){
				if(dp[j] >= 1){
					dp[j] = Math.max(dp[j], dp[i]+1);
				}
			}
			ans = Math.max(ans, dp[i]);
		}
		System.out.println(ans);
	}
}
0