結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 1,559 ms
111,392 KB
testcase_06 AC 1,134 ms
90,368 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 44 ms
53,888 KB
testcase_10 AC 1,162 ms
98,596 KB
testcase_11 AC 1,160 ms
100,820 KB
testcase_12 AC 1,175 ms
101,004 KB
testcase_13 AC 776 ms
87,040 KB
testcase_14 AC 628 ms
90,880 KB
testcase_15 AC 43 ms
53,504 KB
testcase_16 AC 49 ms
60,288 KB
testcase_17 AC 111 ms
73,344 KB
testcase_18 AC 143 ms
78,592 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