結果

問題 No.979 Longest Divisor Sequence
ユーザー tentententen
提出日時 2020-08-25 10:23:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,241 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 78,584 KB
最終ジャッジ日時 2024-11-06 11:07:34
合計ジャッジ時間 9,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
61,068 KB
testcase_01 AC 133 ms
53,908 KB
testcase_02 AC 135 ms
54,008 KB
testcase_03 AC 139 ms
54,096 KB
testcase_04 AC 135 ms
53,920 KB
testcase_05 AC 135 ms
54,120 KB
testcase_06 AC 140 ms
54,068 KB
testcase_07 AC 138 ms
53,860 KB
testcase_08 AC 138 ms
53,808 KB
testcase_09 AC 134 ms
54,268 KB
testcase_10 AC 315 ms
57,924 KB
testcase_11 AC 319 ms
59,908 KB
testcase_12 AC 321 ms
57,864 KB
testcase_13 AC 957 ms
69,108 KB
testcase_14 TLE -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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