結果

問題 No.390 最長の数列
ユーザー maninimanini
提出日時 2021-01-25 22:05:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,433 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 91,336 KB
最終ジャッジ日時 2024-06-22 18:40:13
合計ジャッジ時間 9,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,500 KB
testcase_01 AC 33 ms
52,380 KB
testcase_02 AC 34 ms
52,772 KB
testcase_03 AC 32 ms
53,012 KB
testcase_04 AC 33 ms
52,472 KB
testcase_05 AC 1,433 ms
91,300 KB
testcase_06 AC 1,111 ms
91,096 KB
testcase_07 AC 36 ms
51,940 KB
testcase_08 AC 36 ms
53,376 KB
testcase_09 AC 35 ms
52,780 KB
testcase_10 AC 1,071 ms
90,796 KB
testcase_11 AC 1,070 ms
91,328 KB
testcase_12 AC 1,093 ms
91,336 KB
testcase_13 AC 759 ms
87,300 KB
testcase_14 AC 565 ms
90,656 KB
testcase_15 AC 34 ms
52,740 KB
testcase_16 AC 39 ms
59,492 KB
testcase_17 AC 93 ms
71,560 KB
testcase_18 AC 127 ms
76,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

N = int(input())    # 数字
X = list(map(int, input().split()))     # スペース区切り連続数字
X.sort()

mp = {}

# 約数列挙
def divisorList(a):
    l = []
    for i in range(1, int(a**0.5)+1):
        if a % i == 0:
            l.append(i)
            ii = a // i
            if i != ii:
                l.append(ii)
    return sorted(l)

res = 0
for x in X:
    d = divisorList(x)
    t = 0
    for n in d:
        if n in mp and mp[n] > t:
            t = mp[n]
    mp[x] = t + 1
    if mp[x] > res:
        res = mp[x]

print("{}".format(res))
0