結果

問題 No.390 最長の数列
ユーザー lllllll88938494lllllll88938494
提出日時 2023-04-28 10:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,598 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 111,268 KB
最終ジャッジ日時 2024-04-28 17:16:24
合計ジャッジ時間 9,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 42 ms
53,696 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 1,598 ms
111,268 KB
testcase_06 AC 1,122 ms
90,496 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 42 ms
54,272 KB
testcase_10 AC 1,159 ms
98,716 KB
testcase_11 AC 1,164 ms
100,820 KB
testcase_12 AC 1,160 ms
101,288 KB
testcase_13 AC 776 ms
87,040 KB
testcase_14 AC 623 ms
90,624 KB
testcase_15 AC 43 ms
53,504 KB
testcase_16 AC 48 ms
60,672 KB
testcase_17 AC 107 ms
73,216 KB
testcase_18 AC 143 ms
78,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n=int(input())
x = list(map(int,input().split()))
d = defaultdict(int)
x.sort()
def  cal(a):
    for i in range(1,int(a**0.5)+1):
        if a%i==0:
            if i == a:
                continue
            if d[i] != 0:
                d[a] = max(d[i]+1,d[a])
            t=a//i
            if t == a or d[t] == 0:
                continue
            d[a] = max(d[t] + 1,d[a])
            
for i in range(n):
    now = x[i]
    
    if d[1] > 0:
        d[now] = 2
    else:
        d[now] = 1
        
    cal(now)

print(max(d.values()))
0