結果

問題 No.390 最長の数列
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-14 10:44:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 841 ms / 5,000 ms
コード長 733 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 79,652 KB
実行使用メモリ 74,024 KB
最終ジャッジ日時 2024-10-02 12:11:00
合計ジャッジ時間 11,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,856 KB
testcase_01 AC 134 ms
54,136 KB
testcase_02 AC 134 ms
53,760 KB
testcase_03 AC 134 ms
54,044 KB
testcase_04 AC 132 ms
53,852 KB
testcase_05 AC 763 ms
66,240 KB
testcase_06 AC 831 ms
74,024 KB
testcase_07 AC 135 ms
54,208 KB
testcase_08 AC 143 ms
58,188 KB
testcase_09 AC 147 ms
58,524 KB
testcase_10 AC 841 ms
66,344 KB
testcase_11 AC 838 ms
66,220 KB
testcase_12 AC 840 ms
65,996 KB
testcase_13 AC 557 ms
65,304 KB
testcase_14 AC 809 ms
61,716 KB
testcase_15 AC 134 ms
54,036 KB
testcase_16 AC 153 ms
58,092 KB
testcase_17 AC 268 ms
62,664 KB
testcase_18 AC 301 ms
63,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    ArrayList<Integer> xList = new ArrayList<Integer>();
    for(int i = 0; i < N; i++) {
      xList.add(sc.nextInt());
    }
    Collections.sort(xList);
    int A = xList.get(xList.size() - 1);
    int[] dp = new int[A + 1];
    for(int i = 0; i < xList.size(); i++) {
      dp[xList.get(i)] = 1;
    }
    int ans = 0;
    for(int i = 1; i < A + 1; i++) {
      ans = Math.max(ans, dp[i]);
      if(dp[i] > 0) {
        for(int j = 2 * i; j < A + 1; j += i) {
          if(dp[j] > 0) dp[j] = Math.max(dp[j], 1 + dp[i]);
        }
      }
    }
    System.out.println(ans);
  }
}
0