結果

問題 No.2218 Multiple LIS
ユーザー qibqib
提出日時 2023-03-16 18:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 3,000 ms
コード長 464 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 91,900 KB
最終ジャッジ日時 2024-09-18 09:27:38
合計ジャッジ時間 8,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,112 KB
testcase_01 AC 40 ms
57,472 KB
testcase_02 AC 36 ms
58,112 KB
testcase_03 AC 37 ms
57,728 KB
testcase_04 AC 37 ms
57,984 KB
testcase_05 AC 35 ms
57,728 KB
testcase_06 AC 36 ms
57,728 KB
testcase_07 AC 38 ms
57,984 KB
testcase_08 AC 38 ms
57,728 KB
testcase_09 AC 37 ms
57,344 KB
testcase_10 AC 38 ms
57,728 KB
testcase_11 AC 42 ms
58,112 KB
testcase_12 AC 43 ms
59,916 KB
testcase_13 AC 50 ms
64,128 KB
testcase_14 AC 47 ms
63,744 KB
testcase_15 AC 45 ms
63,232 KB
testcase_16 AC 40 ms
59,136 KB
testcase_17 AC 54 ms
64,128 KB
testcase_18 AC 40 ms
57,728 KB
testcase_19 AC 41 ms
59,264 KB
testcase_20 AC 49 ms
63,232 KB
testcase_21 AC 70 ms
67,328 KB
testcase_22 AC 203 ms
81,408 KB
testcase_23 AC 304 ms
85,140 KB
testcase_24 AC 105 ms
71,552 KB
testcase_25 AC 333 ms
86,944 KB
testcase_26 AC 449 ms
91,776 KB
testcase_27 AC 465 ms
91,776 KB
testcase_28 AC 478 ms
91,264 KB
testcase_29 AC 464 ms
91,712 KB
testcase_30 AC 477 ms
91,264 KB
testcase_31 AC 197 ms
90,764 KB
testcase_32 AC 223 ms
91,136 KB
testcase_33 AC 188 ms
90,624 KB
testcase_34 AC 178 ms
90,368 KB
testcase_35 AC 220 ms
90,624 KB
testcase_36 AC 62 ms
83,456 KB
testcase_37 AC 621 ms
91,900 KB
testcase_38 AC 38 ms
57,600 KB
testcase_39 AC 37 ms
57,856 KB
testcase_40 AC 632 ms
91,768 KB
testcase_41 AC 633 ms
91,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
a = list(map(int, input().split()))

m = 10 ** 5
dp = [0 for _ in range(n)]
idx = [None for _ in range(m + 1)]
for i in range(n):
  for x in range(1, int(math.sqrt(a[i])) + 1):
    if a[i] % x == 0:
      if not idx[x] is None:
        dp[i] = max(dp[i], dp[idx[x]] + 1)
      if x != a[i] // x and not idx[a[i] // x] is None:
        dp[i] = max(dp[i], dp[idx[a[i] // x]] + 1)

  dp[i] = max(dp[i], 1)
  idx[a[i]] = i

print(max(dp))
0