結果

問題 No.390 最長の数列
ユーザー いたいた
提出日時 2025-01-07 21:46:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,800 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 113,992 KB
最終ジャッジ日時 2025-01-07 21:46:52
合計ジャッジ時間 10,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,772 KB
testcase_01 AC 45 ms
54,176 KB
testcase_02 AC 46 ms
55,112 KB
testcase_03 AC 38 ms
53,868 KB
testcase_04 AC 40 ms
54,460 KB
testcase_05 AC 1,800 ms
113,992 KB
testcase_06 AC 1,339 ms
90,540 KB
testcase_07 AC 38 ms
54,252 KB
testcase_08 AC 38 ms
54,044 KB
testcase_09 AC 38 ms
54,956 KB
testcase_10 AC 1,338 ms
98,340 KB
testcase_11 AC 1,342 ms
98,556 KB
testcase_12 AC 1,349 ms
99,216 KB
testcase_13 AC 897 ms
87,152 KB
testcase_14 AC 665 ms
91,300 KB
testcase_15 AC 40 ms
54,540 KB
testcase_16 AC 46 ms
61,452 KB
testcase_17 AC 129 ms
79,404 KB
testcase_18 AC 156 ms
80,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict



def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N=int(input())
x=list(map(int,input().split()))
x.sort()
rui=defaultdict(int)
for i in range(N):
  now=divisors(x[i])
  rui[x[i]]=1
  for next in now:
    if x[i]==next:continue
    rui[x[i]]=max(rui[x[i]],rui[next]+1)
print(max(rui.values()))
0