結果

問題 No.390 最長の数列
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-07-16 16:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 717 ms / 5,000 ms
コード長 1,039 bytes
コンパイル時間 4,053 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 56,844 KB
最終ジャッジ日時 2024-10-02 10:58:39
合計ジャッジ時間 11,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
45,100 KB
testcase_01 AC 161 ms
45,220 KB
testcase_02 AC 163 ms
45,264 KB
testcase_03 AC 164 ms
45,156 KB
testcase_04 AC 163 ms
45,308 KB
testcase_05 AC 634 ms
52,620 KB
testcase_06 AC 717 ms
56,844 KB
testcase_07 AC 159 ms
46,064 KB
testcase_08 AC 156 ms
45,748 KB
testcase_09 AC 164 ms
45,508 KB
testcase_10 AC 644 ms
52,456 KB
testcase_11 AC 709 ms
52,332 KB
testcase_12 AC 712 ms
52,504 KB
testcase_13 AC 551 ms
51,936 KB
testcase_14 AC 703 ms
56,220 KB
testcase_15 AC 158 ms
45,476 KB
testcase_16 AC 169 ms
45,496 KB
testcase_17 AC 262 ms
50,784 KB
testcase_18 AC 287 ms
50,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0390 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int n = in.nextInt();
		int[] a = new int[n];
		for (int i=0; i<n; i++) {
			a[i] = in.nextInt();
		}

		int MAX = 1000001;
		int[] dp = new int[MAX];
		for (int x : a) {
			dp[x] = 1;
		}
		int ans = 1;
		for (int i=1; i<MAX; i++) {
			if (dp[i] == 0) continue;
			for (int j=i+i; j<MAX; j+=i) {
				if (dp[j] != 0) {
					dp[j] = Math.max(dp[i] + 1, dp[j]);
				}
			}
			ans = Math.max(ans, dp[i]);
		}
		out.println(ans);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.nanoTime();

		solve();
		out.flush();

		long end = System.nanoTime();
		dump((end - start) / 1000000 + " ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0