結果

問題 No.390 最長の数列
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-17 18:33:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 739 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 75,508 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-09-17 05:59:42
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,120 KB
testcase_01 AC 136 ms
53,608 KB
testcase_02 AC 136 ms
54,068 KB
testcase_03 AC 136 ms
53,840 KB
testcase_04 AC 138 ms
54,096 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 #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        
        int n = stdin.nextInt();
        int[] x = new int[n];
        for (int i = 0; i < n; i++) {
            x[i] = stdin.nextInt();
        }
        
        Arrays.sort(x);
        int[] dp = new int[n];
        Arrays.fill(dp, 1);
        for (int i = 0; i < n; i++) {
            for (int j = i + 1; j < n; j++) {
                if (x[j] % x[i] == 0) {
                    dp[j] = Math.max(dp[i] + 1, dp[j]);
                }
            }
        }
        
        int ans = Arrays.stream(dp).max().getAsInt();
        System.out.println(ans);
    }
}
0