結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2023-02-18 10:49:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 621 ms / 3,000 ms
コード長 464 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-07-19 22:33:51
合計ジャッジ時間 8,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 40 ms
51,696 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 46 ms
58,368 KB
testcase_13 AC 50 ms
60,928 KB
testcase_14 AC 48 ms
60,800 KB
testcase_15 AC 49 ms
61,056 KB
testcase_16 AC 43 ms
58,368 KB
testcase_17 AC 49 ms
61,484 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 44 ms
58,368 KB
testcase_20 AC 49 ms
61,056 KB
testcase_21 AC 76 ms
65,664 KB
testcase_22 AC 205 ms
75,648 KB
testcase_23 AC 281 ms
81,408 KB
testcase_24 AC 109 ms
68,864 KB
testcase_25 AC 335 ms
82,688 KB
testcase_26 AC 461 ms
90,240 KB
testcase_27 AC 464 ms
90,496 KB
testcase_28 AC 460 ms
90,624 KB
testcase_29 AC 455 ms
90,152 KB
testcase_30 AC 426 ms
90,112 KB
testcase_31 AC 171 ms
89,728 KB
testcase_32 AC 196 ms
89,216 KB
testcase_33 AC 175 ms
89,312 KB
testcase_34 AC 170 ms
89,548 KB
testcase_35 AC 199 ms
89,676 KB
testcase_36 AC 65 ms
78,848 KB
testcase_37 AC 593 ms
89,216 KB
testcase_38 AC 39 ms
51,456 KB
testcase_39 AC 39 ms
51,968 KB
testcase_40 AC 621 ms
87,936 KB
testcase_41 AC 621 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 公式解説
# dp[i][j]:= Aiまで見て最後に選んだ数がjのときの最長部分列の長さ

N = int(input())
A = list(map(int, input().split()))
maxA = max(A)
dp = [0]*(maxA+1)

for i in range(1, N+1):
    num = A[i-1]
    mx = 0
    for k in range(1, num+1):
        if k*k > num:
            break
        if num%k == 0:
            mx = max(mx, dp[k])
            mx = max(mx, dp[num//k])
    dp[num] = mx+1
    #print(dp)

ans = max(dp)
print(ans)
0