結果

問題 No.979 Longest Divisor Sequence
ユーザー htensaihtensai
提出日時 2020-02-06 12:59:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,819 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 78,020 KB
実行使用メモリ 58,672 KB
最終ジャッジ日時 2024-09-25 06:45:06
合計ジャッジ時間 8,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
42,548 KB
testcase_01 AC 128 ms
42,448 KB
testcase_02 AC 129 ms
42,636 KB
testcase_03 AC 131 ms
41,176 KB
testcase_04 AC 120 ms
42,760 KB
testcase_05 AC 128 ms
42,448 KB
testcase_06 AC 129 ms
42,644 KB
testcase_07 AC 133 ms
42,340 KB
testcase_08 AC 134 ms
42,320 KB
testcase_09 AC 131 ms
42,624 KB
testcase_10 AC 233 ms
46,848 KB
testcase_11 AC 235 ms
46,836 KB
testcase_12 AC 235 ms
47,152 KB
testcase_13 AC 749 ms
57,668 KB
testcase_14 AC 1,819 ms
58,388 KB
testcase_15 AC 1,040 ms
58,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] map = new int[300001];
        int ans = 1;
        for (int i = 0; i < n; i++) {
            int max = 0;
            int x = sc.nextInt();
            if (x != 1) {
                max = map[1];
            }
            for (int j = 2; j <= Math.sqrt(x); j++) {
                if (x % j == 0) {
                    max = Math.max(max, map[j]);
                    max = Math.max(max, map[x / j]);
                }
            }
            map[x] = max + 1;
            ans = Math.max(ans, max + 1);
        }
        System.out.println(ans);
    }
}
0