結果

問題 No.979 Longest Divisor Sequence
ユーザー ああいいああいい
提出日時 2022-02-23 15:31:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,153 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 185,656 KB
最終ジャッジ日時 2024-07-01 15:11:48
合計ジャッジ時間 17,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
169,856 KB
testcase_01 AC 883 ms
169,856 KB
testcase_02 AC 891 ms
170,112 KB
testcase_03 AC 904 ms
170,112 KB
testcase_04 AC 911 ms
170,220 KB
testcase_05 AC 863 ms
170,112 KB
testcase_06 AC 886 ms
169,940 KB
testcase_07 AC 891 ms
170,112 KB
testcase_08 AC 902 ms
169,856 KB
testcase_09 AC 894 ms
169,856 KB
testcase_10 AC 911 ms
170,128 KB
testcase_11 AC 907 ms
170,240 KB
testcase_12 AC 905 ms
170,240 KB
testcase_13 AC 950 ms
166,204 KB
testcase_14 AC 1,153 ms
185,656 KB
testcase_15 AC 1,013 ms
168,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
C = 3 * 10 ** 5 + 1
dat = [[] for _ in range(C)]
for i in range(1,C):
    for j in range(i * 2,C,i):
        dat[j].append(i)
dp = [0] * C
for a in A:
    dp[a] = max(dp[a],1)
    _max = 0
    for v in dat[a]:
        if dp[v] + 1 > _max:
            _max = dp[v] + 1
    dp[a] = max(dp[a],_max)
print(max(dp))
0