結果

問題 No.390 最長の数列
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-17 18:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,919 ms / 5,000 ms
コード長 1,055 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 87,520 KB
実行使用メモリ 78,800 KB
最終ジャッジ日時 2024-09-17 05:59:58
合計ジャッジ時間 13,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,956 KB
testcase_01 AC 147 ms
54,276 KB
testcase_02 AC 146 ms
54,260 KB
testcase_03 AC 146 ms
54,228 KB
testcase_04 AC 148 ms
53,952 KB
testcase_05 AC 726 ms
65,884 KB
testcase_06 AC 1,919 ms
78,696 KB
testcase_07 AC 144 ms
54,184 KB
testcase_08 AC 143 ms
54,328 KB
testcase_09 AC 163 ms
56,324 KB
testcase_10 AC 992 ms
73,196 KB
testcase_11 AC 1,034 ms
74,260 KB
testcase_12 AC 1,014 ms
73,028 KB
testcase_13 AC 974 ms
75,560 KB
testcase_14 AC 1,088 ms
78,800 KB
testcase_15 AC 145 ms
53,972 KB
testcase_16 AC 155 ms
54,040 KB
testcase_17 AC 273 ms
58,340 KB
testcase_18 AC 311 ms
59,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Map;
import java.util.Scanner;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

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);
        Map<Integer, Integer> indexes  = IntStream.range(0, n).boxed().collect(Collectors.toMap(i -> x[i], Function.identity()));
        
        int[] dp = new int[n];
        Arrays.fill(dp, 1);
        for (int i = 0; i < n; i++) {
            for (int j = x[i] * 2; j <= x[n - 1]; j += x[i]) {
                if (indexes.containsKey(j)) {
                    dp[indexes.get(j)] = Math.max(dp[indexes.get(j)], dp[i] + 1);
                }
            }
        }
        
        int ans = Arrays.stream(dp).max().getAsInt();
        System.out.println(ans);
    }
}
0