結果

問題 No.979 Longest Divisor Sequence
ユーザー H3PO4H3PO4
提出日時 2022-08-31 15:24:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,144 KB
最終ジャッジ日時 2024-11-08 09:08:06
合計ジャッジ時間 5,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
72,832 KB
testcase_01 AC 62 ms
68,224 KB
testcase_02 AC 59 ms
67,456 KB
testcase_03 AC 59 ms
67,328 KB
testcase_04 AC 59 ms
67,328 KB
testcase_05 WA -
testcase_06 AC 64 ms
67,072 KB
testcase_07 WA -
testcase_08 AC 61 ms
67,072 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N = int(input())
A = tuple(map(int, input().split()))
MAX = 3 * 10 ** 5
table = [[] for _ in range(MAX + 1)]
for i, a in enumerate(A):
    table[a].append(i)
dp = [0] * N
dp[0] = 1
for i, a in enumerate(A):
    for b in range(a * 2, MAX + 1, a):
        for j in table[b]:
            if i < j:
                dp[j] = max(dp[j], dp[i] + 1)
print(max(dp))
0