結果

問題 No.979 Longest Divisor Sequence
ユーザー htensaihtensai
提出日時 2020-02-06 12:52:14
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 926 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 82,824 KB
最終ジャッジ日時 2024-09-25 06:44:28
合計ジャッジ時間 10,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,184 KB
testcase_01 AC 129 ms
41,444 KB
testcase_02 AC 130 ms
41,344 KB
testcase_03 AC 133 ms
41,136 KB
testcase_04 AC 132 ms
41,328 KB
testcase_05 AC 133 ms
42,076 KB
testcase_06 AC 132 ms
41,416 KB
testcase_07 AC 134 ms
41,196 KB
testcase_08 AC 117 ms
40,076 KB
testcase_09 AC 132 ms
41,272 KB
testcase_10 AC 257 ms
46,596 KB
testcase_11 AC 244 ms
46,256 KB
testcase_12 AC 253 ms
46,112 KB
testcase_13 AC 872 ms
57,648 KB
testcase_14 TLE -
testcase_15 AC 1,479 ms
63,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        int ans = 1;
        for (int i = 0; i < n; i++) {
            int max = 0;
            int x = sc.nextInt();
            if (map.containsKey(1) && x != 1) {
                max = 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