結果

問題 No.2218 Multiple LIS
ユーザー qibqib
提出日時 2023-03-16 18:42:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 254,528 KB
最終ジャッジ日時 2024-09-18 09:27:28
合計ジャッジ時間 8,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
67,328 KB
testcase_01 AC 39 ms
58,496 KB
testcase_02 AC 45 ms
62,848 KB
testcase_03 AC 43 ms
62,592 KB
testcase_04 AC 40 ms
61,440 KB
testcase_05 AC 42 ms
60,800 KB
testcase_06 AC 43 ms
61,056 KB
testcase_07 AC 45 ms
62,592 KB
testcase_08 AC 44 ms
62,080 KB
testcase_09 AC 46 ms
62,208 KB
testcase_10 AC 41 ms
60,800 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 AC 75 ms
72,576 KB
testcase_13 AC 125 ms
77,952 KB
testcase_14 AC 126 ms
77,312 KB
testcase_15 AC 102 ms
78,080 KB
testcase_16 AC 77 ms
67,584 KB
testcase_17 AC 147 ms
77,884 KB
testcase_18 AC 60 ms
63,232 KB
testcase_19 AC 80 ms
68,608 KB
testcase_20 AC 139 ms
77,952 KB
testcase_21 AC 52 ms
66,304 KB
testcase_22 AC 69 ms
76,288 KB
testcase_23 AC 84 ms
86,044 KB
testcase_24 AC 58 ms
70,272 KB
testcase_25 AC 88 ms
86,912 KB
testcase_26 AC 108 ms
92,160 KB
testcase_27 AC 114 ms
92,544 KB
testcase_28 AC 116 ms
92,544 KB
testcase_29 AC 106 ms
91,904 KB
testcase_30 AC 107 ms
92,032 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
  if idx[a[i]] is None:
    dp[i] = 1
  else:
    dp[i] = dp[idx[a[i]]] + 1
  for x in range(a[i], m + 1, a[i]):
    if idx[x] is None or dp[idx[x]] < dp[i]:
      idx[x] = i

print(max(dp))
0