結果
問題 | No.2218 Multiple LIS |
ユーザー | tenten |
提出日時 | 2023-07-26 15:09:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,157 bytes |
コンパイル時間 | 3,102 ms |
コンパイル使用メモリ | 84,984 KB |
実行使用メモリ | 51,636 KB |
最終ジャッジ日時 | 2024-10-03 02:14:03 |
合計ジャッジ時間 | 10,294 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
42,072 KB |
testcase_01 | AC | 55 ms
37,264 KB |
testcase_02 | AC | 55 ms
37,100 KB |
testcase_03 | AC | 55 ms
37,420 KB |
testcase_04 | AC | 55 ms
37,188 KB |
testcase_05 | AC | 57 ms
36,952 KB |
testcase_06 | AC | 54 ms
37,016 KB |
testcase_07 | AC | 55 ms
36,856 KB |
testcase_08 | AC | 55 ms
37,140 KB |
testcase_09 | AC | 56 ms
36,676 KB |
testcase_10 | AC | 57 ms
36,772 KB |
testcase_11 | AC | 57 ms
37,008 KB |
testcase_12 | AC | 71 ms
37,184 KB |
testcase_13 | AC | 102 ms
38,460 KB |
testcase_14 | AC | 88 ms
38,852 KB |
testcase_15 | AC | 92 ms
38,776 KB |
testcase_16 | AC | 58 ms
36,804 KB |
testcase_17 | AC | 102 ms
38,912 KB |
testcase_18 | AC | 56 ms
37,240 KB |
testcase_19 | AC | 60 ms
37,176 KB |
testcase_20 | AC | 88 ms
38,352 KB |
testcase_21 | AC | 356 ms
41,820 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
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>> dp = new ArrayList<>(); dp.add(new HashSet<>()); dp.get(0).add(1); while (n-- > 0) { int x = sc.nextInt(); boolean enable = false; for (int i = dp.size() - 1; i >= 0 && !enable; i--) { for (int y : dp.get(i)) { if (x % y == 0) { enable = true; if (i == dp.size() - 1) { dp.add(new HashSet<>()); } dp.get(i + 1).add(x); break; } } } } System.out.println(dp.size() - 1); } } 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(); } }