結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | tenten |
提出日時 | 2020-08-25 10:22:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,241 bytes |
コンパイル時間 | 3,132 ms |
コンパイル使用メモリ | 79,668 KB |
実行使用メモリ | 77,088 KB |
最終ジャッジ日時 | 2024-11-06 11:07:24 |
合計ジャッジ時間 | 9,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
61,048 KB |
testcase_01 | AC | 138 ms
54,080 KB |
testcase_02 | AC | 137 ms
54,144 KB |
testcase_03 | AC | 139 ms
54,052 KB |
testcase_04 | AC | 138 ms
53,884 KB |
testcase_05 | AC | 135 ms
54,128 KB |
testcase_06 | AC | 137 ms
54,152 KB |
testcase_07 | AC | 137 ms
53,888 KB |
testcase_08 | AC | 136 ms
54,116 KB |
testcase_09 | AC | 139 ms
54,132 KB |
testcase_10 | AC | 380 ms
58,816 KB |
testcase_11 | AC | 373 ms
58,256 KB |
testcase_12 | AC | 392 ms
58,696 KB |
testcase_13 | AC | 954 ms
68,556 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
ソースコード
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 / 2 > x) { 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()); } }