結果

問題 No.2218 Multiple LIS
ユーザー meruuu61779999meruuu61779999
提出日時 2023-02-17 21:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 3,000 ms
コード長 665 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-07-19 13:04:10
合計ジャッジ時間 8,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 37 ms
57,216 KB
testcase_02 AC 40 ms
57,088 KB
testcase_03 AC 41 ms
57,088 KB
testcase_04 AC 38 ms
56,960 KB
testcase_05 AC 39 ms
57,088 KB
testcase_06 AC 37 ms
57,088 KB
testcase_07 AC 40 ms
57,344 KB
testcase_08 AC 38 ms
56,960 KB
testcase_09 AC 38 ms
57,088 KB
testcase_10 AC 39 ms
57,344 KB
testcase_11 AC 40 ms
57,216 KB
testcase_12 AC 44 ms
60,160 KB
testcase_13 AC 52 ms
63,872 KB
testcase_14 AC 52 ms
63,488 KB
testcase_15 AC 53 ms
63,744 KB
testcase_16 AC 42 ms
58,624 KB
testcase_17 AC 54 ms
64,768 KB
testcase_18 AC 39 ms
57,216 KB
testcase_19 AC 40 ms
58,752 KB
testcase_20 AC 52 ms
63,872 KB
testcase_21 AC 80 ms
71,808 KB
testcase_22 AC 212 ms
79,872 KB
testcase_23 AC 309 ms
83,456 KB
testcase_24 AC 110 ms
76,800 KB
testcase_25 AC 345 ms
84,608 KB
testcase_26 AC 467 ms
89,600 KB
testcase_27 AC 460 ms
89,856 KB
testcase_28 AC 471 ms
89,472 KB
testcase_29 AC 479 ms
89,344 KB
testcase_30 AC 468 ms
89,344 KB
testcase_31 AC 199 ms
89,216 KB
testcase_32 AC 215 ms
88,960 KB
testcase_33 AC 206 ms
88,832 KB
testcase_34 AC 202 ms
89,344 KB
testcase_35 AC 216 ms
89,088 KB
testcase_36 AC 85 ms
88,704 KB
testcase_37 AC 697 ms
90,112 KB
testcase_38 AC 40 ms
57,088 KB
testcase_39 AC 40 ms
57,216 KB
testcase_40 AC 617 ms
89,344 KB
testcase_41 AC 617 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

inputs = sys.stdin.readline

"""再帰関数のときセット
sys.setrecursionlimit(10**7)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
"""


def f(x):
    ret = set()
    for i in range(1, x + 1):
        if i * i > x:
            break
        if x % i == 0:
            ret.add(i)
            ret.add(x // i)
    return ret


def main():
    N = int(inputs())
    A = list(map(int, inputs().split()))

    R = [0] * (10 ** 5 + 1)
    for a in A:
        se = f(a)
        max_val = 0
        for el in se:
            max_val = max(max_val, R[el] + 1)
        R[a] = max_val

    print(max(R))


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