結果

問題 No.390 最長の数列
ユーザー tamatotamato
提出日時 2020-05-21 23:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 111,788 KB
最終ジャッジ日時 2024-10-02 10:19:20
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
67,124 KB
testcase_01 AC 71 ms
66,236 KB
testcase_02 AC 82 ms
66,200 KB
testcase_03 AC 72 ms
66,132 KB
testcase_04 AC 83 ms
66,064 KB
testcase_05 AC 95 ms
106,848 KB
testcase_06 AC 510 ms
111,392 KB
testcase_07 AC 64 ms
66,632 KB
testcase_08 AC 54 ms
66,680 KB
testcase_09 AC 66 ms
66,668 KB
testcase_10 AC 161 ms
111,788 KB
testcase_11 AC 167 ms
111,588 KB
testcase_12 AC 167 ms
111,396 KB
testcase_13 AC 153 ms
103,952 KB
testcase_14 AC 365 ms
111,096 KB
testcase_15 AC 53 ms
65,996 KB
testcase_16 AC 55 ms
66,980 KB
testcase_17 AC 68 ms
70,836 KB
testcase_18 AC 79 ms
73,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    X = list(map(int, input().split()))
    X = set(X)

    A = [1] * (10**6+1)
    for i in range(1, 10**6+1):
        if i in X:
            for j in range(2, 10**6+1):
                if i*j > 10**6:
                    break
                if i*j in X:
                    A[i*j] = max(A[i*j], A[i] + 1)
    print(max(A))


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