結果

問題 No.2218 Multiple LIS
ユーザー KudeKude
提出日時 2023-02-17 21:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 3,000 ms
コード長 436 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-07-19 12:50:56
合計ジャッジ時間 7,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
89,472 KB
testcase_01 AC 119 ms
89,856 KB
testcase_02 AC 124 ms
89,728 KB
testcase_03 AC 126 ms
89,600 KB
testcase_04 AC 130 ms
89,344 KB
testcase_05 AC 129 ms
89,472 KB
testcase_06 AC 131 ms
89,472 KB
testcase_07 AC 123 ms
89,600 KB
testcase_08 AC 118 ms
89,600 KB
testcase_09 AC 122 ms
89,216 KB
testcase_10 AC 130 ms
89,472 KB
testcase_11 AC 120 ms
89,728 KB
testcase_12 AC 124 ms
89,600 KB
testcase_13 AC 124 ms
89,600 KB
testcase_14 AC 121 ms
89,600 KB
testcase_15 AC 120 ms
89,984 KB
testcase_16 AC 126 ms
89,856 KB
testcase_17 AC 121 ms
89,728 KB
testcase_18 AC 114 ms
89,216 KB
testcase_19 AC 120 ms
89,856 KB
testcase_20 AC 130 ms
89,856 KB
testcase_21 AC 135 ms
89,984 KB
testcase_22 AC 159 ms
96,896 KB
testcase_23 AC 188 ms
100,992 KB
testcase_24 AC 150 ms
93,568 KB
testcase_25 AC 194 ms
101,888 KB
testcase_26 AC 221 ms
106,880 KB
testcase_27 AC 204 ms
106,880 KB
testcase_28 AC 220 ms
107,264 KB
testcase_29 AC 205 ms
106,880 KB
testcase_30 AC 213 ms
106,880 KB
testcase_31 AC 182 ms
106,112 KB
testcase_32 AC 191 ms
106,368 KB
testcase_33 AC 190 ms
106,496 KB
testcase_34 AC 190 ms
106,496 KB
testcase_35 AC 187 ms
106,368 KB
testcase_36 AC 139 ms
102,400 KB
testcase_37 AC 164 ms
107,520 KB
testcase_38 AC 125 ms
89,472 KB
testcase_39 AC 117 ms
89,472 KB
testcase_40 AC 163 ms
106,880 KB
testcase_41 AC 162 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 10 ** 5 + 1
B = 320
d = [0] * M
divs = [[] for _ in range(M)]
for x in range(1, B):
    for y in range(x, M, x):
        divs[y].append(x)
a = list(map(int, input().split()))
ans = 0
for x in reversed(a):
    if x >= B:
        v = max((d[b] for b in range(x, M, x)), default = 0) + 1
        d[x] = v
    else:
        v = d[x] + 1
    ans = max(ans, v)
    for y in divs[x]:
        d[y] = max(d[y], v)
print(ans)
0