結果

問題 No.390 最長の数列
ユーザー tcltktcltk
提出日時 2021-01-20 04:00:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,724 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 112,240 KB
最終ジャッジ日時 2024-06-01 05:23:00
合計ジャッジ時間 12,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
89,076 KB
testcase_01 AC 146 ms
88,704 KB
testcase_02 AC 144 ms
88,704 KB
testcase_03 AC 143 ms
89,088 KB
testcase_04 AC 143 ms
88,832 KB
testcase_05 AC 1,724 ms
111,744 KB
testcase_06 AC 1,215 ms
111,564 KB
testcase_07 AC 143 ms
89,124 KB
testcase_08 AC 152 ms
97,280 KB
testcase_09 AC 159 ms
97,356 KB
testcase_10 AC 1,275 ms
112,240 KB
testcase_11 AC 1,275 ms
112,056 KB
testcase_12 AC 1,297 ms
112,204 KB
testcase_13 AC 953 ms
108,116 KB
testcase_14 AC 696 ms
104,768 KB
testcase_15 AC 150 ms
89,344 KB
testcase_16 AC 156 ms
97,368 KB
testcase_17 AC 218 ms
97,444 KB
testcase_18 AC 251 ms
97,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """5
# 1 2 3 4 5
# """
# sys.stdin = io.StringIO(_INPUT)


def get_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]

def main():
    N = int(input())
    X = sorted(map(int, input().split()))

    MaxX = max(X)

    dp = [0 for _ in range(MaxX + 1)]

    for i in range(N):
        divs = get_divisors(X[i])
        v = 0
        for d in divs:
            if d < X[i]:
                v = max(v, dp[d])
        dp[X[i]] = v + 1

    print(max(dp))

if __name__ == '__main__':
    main()
0