結果

問題 No.979 Longest Divisor Sequence
ユーザー convexineqconvexineq
提出日時 2021-05-05 03:49:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,326 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 195,140 KB
最終ジャッジ日時 2024-07-26 12:44:30
合計ジャッジ時間 18,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 930 ms
169,856 KB
testcase_01 AC 937 ms
170,052 KB
testcase_02 AC 938 ms
169,984 KB
testcase_03 AC 949 ms
170,068 KB
testcase_04 AC 943 ms
169,984 KB
testcase_05 AC 924 ms
169,984 KB
testcase_06 AC 975 ms
169,856 KB
testcase_07 AC 915 ms
170,168 KB
testcase_08 AC 916 ms
169,856 KB
testcase_09 AC 895 ms
170,112 KB
testcase_10 AC 939 ms
170,112 KB
testcase_11 AC 967 ms
170,368 KB
testcase_12 AC 976 ms
170,112 KB
testcase_13 AC 1,025 ms
186,180 KB
testcase_14 AC 1,326 ms
195,140 KB
testcase_15 AC 1,090 ms
171,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a = map(int,open(0).read().split())
M = 300005
d = [[] for _ in range(M)]
for i in range(1,M):
    for j in range(i*2,M,i):
        d[j].append(i)
r = [0]*M
for ai in a:
    r[ai] = max(r[di] for di in d[ai])+1 if ai>1 else 1
print(max(r))
0