結果

問題 No.390 最長の数列
ユーザー convexineqconvexineq
提出日時 2021-02-02 17:15:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-06-29 23:42:48
合計ジャッジ時間 2,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,352 KB
testcase_01 AC 52 ms
65,792 KB
testcase_02 AC 56 ms
66,432 KB
testcase_03 AC 53 ms
66,304 KB
testcase_04 AC 58 ms
66,176 KB
testcase_05 AC 76 ms
93,440 KB
testcase_06 AC 211 ms
99,968 KB
testcase_07 AC 52 ms
65,920 KB
testcase_08 AC 48 ms
65,608 KB
testcase_09 AC 52 ms
66,304 KB
testcase_10 AC 96 ms
99,576 KB
testcase_11 AC 97 ms
99,368 KB
testcase_12 AC 103 ms
99,376 KB
testcase_13 AC 87 ms
93,056 KB
testcase_14 AC 194 ms
99,312 KB
testcase_15 AC 52 ms
65,792 KB
testcase_16 AC 52 ms
66,048 KB
testcase_17 AC 57 ms
70,532 KB
testcase_18 AC 58 ms
71,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
N = 10**6+1
dp = [0]*N
for ai in a: dp[ai] = 1
for i in range(1,N):
    if dp[i] == 0: continue
    for j in range(2*i,N,i):
        if dp[j]: dp[j] = max(dp[j],dp[i]+1)
print(max(dp))
0