結果

問題 No.979 Longest Divisor Sequence
ユーザー tentententen
提出日時 2020-08-25 11:22:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,547 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 84,240 KB
最終ジャッジ日時 2024-04-24 04:15:54
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,008 KB
testcase_01 AC 47 ms
37,120 KB
testcase_02 AC 47 ms
36,928 KB
testcase_03 AC 50 ms
36,860 KB
testcase_04 AC 50 ms
37,180 KB
testcase_05 AC 48 ms
36,920 KB
testcase_06 AC 46 ms
36,860 KB
testcase_07 AC 47 ms
37,116 KB
testcase_08 AC 46 ms
36,752 KB
testcase_09 AC 45 ms
36,764 KB
testcase_10 AC 125 ms
40,516 KB
testcase_11 AC 127 ms
41,052 KB
testcase_12 AC 136 ms
40,988 KB
testcase_13 AC 273 ms
58,864 KB
testcase_14 AC 1,547 ms
84,240 KB
testcase_15 AC 651 ms
57,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        HashMap<Integer, Integer> map = new HashMap<>();
        int ans = 0;
        String[] line = br.readLine().split(" ", n);
        for (int i = 0; i < n; i++) {
            int x = Integer.parseInt(line[i]);
            int max = 0;
            if (x != 1 && map.containsKey(1)) {
                max = map.get(1);
            }
            for (int j = 2; j <= Math.sqrt(x); j++) {
                if (x % j == 0) {
                    if (map.containsKey(j)) {
                        max = Math.max(max, map.get(j));
                    }
                    if (map.containsKey(x / j)) {
                        max = Math.max(max, map.get(x / j));
                    }
                }
            }
            map.put(x, max + 1);
            ans = Math.max(ans, max + 1);
        }
        System.out.println(ans);
    }
}
0