結果

問題 No.390 最長の数列
ユーザー tenten
提出日時 2022-08-10 15:32:55
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

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