結果

問題 No.979 Longest Divisor Sequence
ユーザー salmon0852salmon0852
提出日時 2022-10-27 16:28:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,455 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 149,432 KB
最終ジャッジ日時 2024-07-05 01:47:59
合計ジャッジ時間 3,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,724 KB
testcase_01 AC 42 ms
55,576 KB
testcase_02 AC 41 ms
55,488 KB
testcase_03 AC 42 ms
54,092 KB
testcase_04 AC 40 ms
55,028 KB
testcase_05 AC 42 ms
54,228 KB
testcase_06 AC 41 ms
54,588 KB
testcase_07 AC 41 ms
54,192 KB
testcase_08 AC 41 ms
53,928 KB
testcase_09 AC 41 ms
54,268 KB
testcase_10 AC 62 ms
66,472 KB
testcase_11 AC 57 ms
67,420 KB
testcase_12 AC 55 ms
66,068 KB
testcase_13 AC 106 ms
103,932 KB
testcase_14 AC 1,455 ms
149,432 KB
testcase_15 AC 353 ms
98,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_right

n = int(input())
a = [int(i) for i in input().split()]
max_a = max(a)

cnt = [1] * n
d = defaultdict(list)
for i in range(n): d[a[i]].append(i)

for i in range(n):
    x = 2 * a[i]
    while x <= max_a:
        if x in d:
            s = bisect_right(d[x], i)
            for j in d[x][s:]:
                cnt[j] = max(cnt[j], cnt[i] + 1)
        x += a[i]

print(max(cnt))

0