結果

問題 No.390 最長の数列
コンテスト
ユーザー tenten
提出日時 2022-08-10 15:32:55
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
AC  
実行時間 469 ms / 5,000 ms
+ 472µs
コード長 1,604 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,696 ms
コンパイル使用メモリ 86,088 KB
実行使用メモリ 56,036 KB
最終ジャッジ日時 2026-09-01 09:09:57
合計ジャッジ時間 7,767 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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