結果
問題 | No.2218 Multiple LIS |
ユーザー | tenten |
提出日時 | 2024-04-03 09:47:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,910 bytes |
コンパイル時間 | 2,613 ms |
コンパイル使用メモリ | 79,076 KB |
実行使用メモリ | 67,276 KB |
最終ジャッジ日時 | 2024-09-30 23:41:19 |
合計ジャッジ時間 | 14,025 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
57,248 KB |
testcase_01 | AC | 54 ms
50,388 KB |
testcase_02 | AC | 52 ms
50,048 KB |
testcase_03 | AC | 52 ms
50,280 KB |
testcase_04 | AC | 54 ms
50,096 KB |
testcase_05 | AC | 52 ms
50,380 KB |
testcase_06 | AC | 51 ms
50,432 KB |
testcase_07 | AC | 54 ms
50,416 KB |
testcase_08 | AC | 55 ms
50,380 KB |
testcase_09 | AC | 53 ms
50,468 KB |
testcase_10 | AC | 52 ms
50,364 KB |
testcase_11 | AC | 54 ms
50,032 KB |
testcase_12 | AC | 59 ms
50,380 KB |
testcase_13 | AC | 79 ms
51,044 KB |
testcase_14 | AC | 85 ms
51,184 KB |
testcase_15 | AC | 84 ms
51,160 KB |
testcase_16 | AC | 56 ms
50,348 KB |
testcase_17 | AC | 89 ms
51,568 KB |
testcase_18 | AC | 54 ms
50,476 KB |
testcase_19 | AC | 58 ms
50,240 KB |
testcase_20 | AC | 79 ms
50,740 KB |
testcase_21 | AC | 224 ms
52,680 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
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.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); List<List<Integer>> lengths = new ArrayList<>(); lengths.add(new ArrayList<>()); lengths.get(0).add(1); while (n-- > 0) { int y = sc.nextInt(); for (int i = lengths.size() - 1; i >= 0; i--) { boolean enable = false; for (int x : lengths.get(i)) { enable = (y % x == 0); if (enable) { break; } } if (enable) { if (i == lengths.size() - 1) { lengths.add(new ArrayList<>()); } lengths.get(i + 1).add(y); break; } } } System.out.println(lengths.size() - 1); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }