結果

問題 No.390 最長の数列
ユーザー s_shoheis_shohei
提出日時 2020-06-14 16:08:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,594 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-06-27 12:05:54
合計ジャッジ時間 9,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 1,594 ms
105,728 KB
testcase_06 AC 1,210 ms
105,216 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 45 ms
53,760 KB
testcase_09 AC 45 ms
53,760 KB
testcase_10 AC 1,208 ms
105,856 KB
testcase_11 AC 1,222 ms
106,240 KB
testcase_12 AC 1,205 ms
105,856 KB
testcase_13 AC 838 ms
98,688 KB
testcase_14 AC 565 ms
105,472 KB
testcase_15 AC 46 ms
53,760 KB
testcase_16 AC 52 ms
60,160 KB
testcase_17 AC 126 ms
74,240 KB
testcase_18 AC 161 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int, input().split()))
def m_div(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
    return divisors

from collections import defaultdict
d = defaultdict(int)
for num in x:
    d[num]=1

x.sort(reverse=True)
for num in x:
    now_len=d[num] # must be 1 or greater
    for div in m_div(num):
        if div==num or (not div in d):
            continue
        d[div] = max(d[div],now_len + 1)

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