結果

問題 No.979 Longest Divisor Sequence
ユーザー htensaihtensai
提出日時 2020-02-06 13:19:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,222 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 77,564 KB
最終ジャッジ日時 2024-09-25 06:46:22
合計ジャッジ時間 5,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,272 KB
testcase_01 AC 51 ms
49,844 KB
testcase_02 AC 52 ms
50,304 KB
testcase_03 AC 50 ms
49,980 KB
testcase_04 AC 51 ms
50,476 KB
testcase_05 AC 51 ms
50,384 KB
testcase_06 AC 51 ms
50,292 KB
testcase_07 AC 50 ms
50,136 KB
testcase_08 AC 50 ms
50,312 KB
testcase_09 AC 50 ms
50,224 KB
testcase_10 AC 89 ms
51,992 KB
testcase_11 AC 92 ms
51,628 KB
testcase_12 AC 92 ms
51,788 KB
testcase_13 AC 292 ms
77,176 KB
testcase_14 AC 1,222 ms
77,564 KB
testcase_15 AC 491 ms
60,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] map = new int[300001];
        int ans = 1;
        String[] line = br.readLine().split(" ", n);
        for (int i = 0; i < n; i++) {
            int max = 0;
            int x = Integer.parseInt(line[i]);
            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