結果

問題 No.390 最長の数列
ユーザー tentententen
提出日時 2022-08-10 15:32:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,255 ms / 5,000 ms
コード長 1,604 bytes
コンパイル時間 3,461 ms
コンパイル使用メモリ 78,156 KB
実行使用メモリ 51,768 KB
最終ジャッジ日時 2024-09-21 02:21:01
合計ジャッジ時間 11,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,088 KB
testcase_01 AC 53 ms
37,196 KB
testcase_02 AC 53 ms
37,000 KB
testcase_03 AC 53 ms
37,292 KB
testcase_04 AC 53 ms
36,936 KB
testcase_05 AC 1,255 ms
51,376 KB
testcase_06 AC 946 ms
51,768 KB
testcase_07 AC 53 ms
37,240 KB
testcase_08 AC 52 ms
37,196 KB
testcase_09 AC 53 ms
36,840 KB
testcase_10 AC 1,015 ms
50,552 KB
testcase_11 AC 1,021 ms
51,340 KB
testcase_12 AC 1,035 ms
50,944 KB
testcase_13 AC 586 ms
49,728 KB
testcase_14 AC 589 ms
50,484 KB
testcase_15 AC 52 ms
36,948 KB
testcase_16 AC 54 ms
37,424 KB
testcase_17 AC 200 ms
44,372 KB
testcase_18 AC 197 ms
43,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        Arrays.sort(values);
        int max = 0;
        HashMap<Integer, Integer> counts = new HashMap<>();
        for (int j = 0; j < n; j++) {
            int x = values[j];
            int v = counts.getOrDefault(1, 0) + 1;
            for (int i = 2; i <= Math.sqrt(x); i++) {
                if (x % i == 0) {
                    v = Math.max(v, counts.getOrDefault(i, 0) + 1);
                    v = Math.max(v, counts.getOrDefault(x / i, 0) + 1);
                }
            }
            max = Math.max(max, v);
            counts.put(x, v);
        }
        System.out.println(max);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0