結果

問題 No.979 Longest Divisor Sequence
ユーザー tentententen
提出日時 2023-02-01 08:50:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,354 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 91,388 KB
実行使用メモリ 68,980 KB
最終ジャッジ日時 2024-07-01 06:24:49
合計ジャッジ時間 8,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
57,368 KB
testcase_01 AC 55 ms
50,120 KB
testcase_02 AC 55 ms
50,276 KB
testcase_03 AC 55 ms
50,300 KB
testcase_04 AC 55 ms
50,128 KB
testcase_05 AC 56 ms
50,372 KB
testcase_06 AC 56 ms
49,948 KB
testcase_07 AC 57 ms
49,868 KB
testcase_08 AC 55 ms
50,416 KB
testcase_09 AC 56 ms
50,244 KB
testcase_10 AC 245 ms
53,140 KB
testcase_11 AC 247 ms
53,104 KB
testcase_12 AC 243 ms
53,332 KB
testcase_13 AC 336 ms
58,436 KB
testcase_14 TLE -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<HashSet<Integer>> list = new ArrayList<>();
        list.add(new HashSet<>());
        for (int i = 0; i < n; i++) {
            int target = sc.nextInt();
            int left = -1;
            int right = list.size();
            while (right - left > 1) {
                boolean enable = false;
                int m = (left + right) / 2;
                for (int x : list.get(m)) {
                    if (target > x && target % x == 0) {
                        enable = true;
                        break;
                    }
                }
                if (enable) {
                    left = m;
                } else {
                    right = m;
                }
            }
            if (right == list.size()) {
                list.add(new HashSet<>());
            }
            list.get(right).add(target);
        }
        System.out.println(list.size());
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0