結果

問題 No.2218 Multiple LIS
ユーザー tentententen
提出日時 2024-04-03 09:51:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 487 ms / 3,000 ms
コード長 1,615 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 80,072 KB
実行使用メモリ 46,556 KB
最終ジャッジ日時 2024-09-30 23:41:32
合計ジャッジ時間 11,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
37,940 KB
testcase_01 AC 70 ms
38,432 KB
testcase_02 AC 70 ms
38,600 KB
testcase_03 AC 69 ms
38,568 KB
testcase_04 AC 69 ms
38,632 KB
testcase_05 AC 68 ms
38,136 KB
testcase_06 AC 68 ms
38,432 KB
testcase_07 AC 69 ms
38,444 KB
testcase_08 AC 69 ms
38,224 KB
testcase_09 AC 69 ms
38,232 KB
testcase_10 AC 69 ms
38,224 KB
testcase_11 AC 69 ms
38,184 KB
testcase_12 AC 71 ms
38,208 KB
testcase_13 AC 77 ms
38,608 KB
testcase_14 AC 75 ms
38,160 KB
testcase_15 AC 72 ms
38,160 KB
testcase_16 AC 70 ms
38,516 KB
testcase_17 AC 77 ms
38,444 KB
testcase_18 AC 69 ms
38,316 KB
testcase_19 AC 71 ms
38,220 KB
testcase_20 AC 78 ms
38,276 KB
testcase_21 AC 133 ms
41,096 KB
testcase_22 AC 253 ms
43,704 KB
testcase_23 AC 314 ms
45,796 KB
testcase_24 AC 172 ms
41,744 KB
testcase_25 AC 315 ms
45,832 KB
testcase_26 AC 410 ms
46,476 KB
testcase_27 AC 404 ms
46,556 KB
testcase_28 AC 455 ms
46,124 KB
testcase_29 AC 448 ms
46,416 KB
testcase_30 AC 451 ms
45,780 KB
testcase_31 AC 284 ms
45,884 KB
testcase_32 AC 285 ms
46,112 KB
testcase_33 AC 272 ms
46,088 KB
testcase_34 AC 287 ms
45,808 KB
testcase_35 AC 284 ms
45,816 KB
testcase_36 AC 182 ms
44,400 KB
testcase_37 AC 487 ms
46,544 KB
testcase_38 AC 67 ms
38,184 KB
testcase_39 AC 68 ms
38,516 KB
testcase_40 AC 438 ms
46,184 KB
testcase_41 AC 436 ms
46,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        int[] levels = new int[100001];
        while (n-- > 0) {
            int x = sc.nextInt();
            int current = 0;
            for (int i = 1; i <= Math.sqrt(x); i++) {
                if (x % i == 0) {
                    current = Math.max(current, levels[i]);
                    current = Math.max(current, levels[x / i]);
                }
            }
            levels[x] = current + 1;
        }
        long ans = Arrays.stream(levels).max().orElse(0);
        System.out.println(ans);
    }
}
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();
        }
    }
    
}
0