結果

問題 No.390 最長の数列
ユーザー tentententen
提出日時 2020-09-29 13:54:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,271 ms / 5,000 ms
コード長 1,064 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 79,704 KB
実行使用メモリ 104,428 KB
最終ジャッジ日時 2024-07-03 20:22:30
合計ジャッジ時間 19,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,164 KB
testcase_01 AC 130 ms
54,124 KB
testcase_02 AC 130 ms
54,204 KB
testcase_03 AC 133 ms
53,848 KB
testcase_04 AC 135 ms
53,828 KB
testcase_05 AC 2,189 ms
104,428 KB
testcase_06 AC 2,271 ms
83,068 KB
testcase_07 AC 129 ms
53,924 KB
testcase_08 AC 129 ms
54,096 KB
testcase_09 AC 129 ms
53,924 KB
testcase_10 AC 2,074 ms
91,076 KB
testcase_11 AC 2,062 ms
92,020 KB
testcase_12 AC 2,098 ms
91,204 KB
testcase_13 AC 1,259 ms
75,912 KB
testcase_14 AC 1,545 ms
83,292 KB
testcase_15 AC 132 ms
53,844 KB
testcase_16 AC 161 ms
54,508 KB
testcase_17 AC 411 ms
65,196 KB
testcase_18 AC 560 ms
68,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashSet<Integer> exists = new HashSet<>();
    static TreeMap<Integer, Integer> dp = new TreeMap<>();
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for (int i = 0; i < n; i++) {
            exists.add(sc.nextInt());
        }
        int max = 0;
        for (int x : exists) {
            max = Math.max(max, dfw(x));
        }
        System.out.println(max);
    }
    
    static int dfw(int x) {
        if (dp.containsKey(x)) {
            return dp.get(x);
        }
        if (!exists.contains(x)) {
            dp.put(x, 0);
            return 0;
        }
        if (x == 1) {
            dp.put(x, 1);
            return 1;
        }
        int max = dfw(1);
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                max = Math.max(max, dfw(i));
                max = Math.max(max, dfw(x / i));
            }
        }
        dp.put(x, max + 1);
        return max + 1;
    }
}
0