結果

問題 No.390 最長の数列
ユーザー 👑 rin204rin204
提出日時 2022-07-02 20:04:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 107,976 KB
最終ジャッジ日時 2024-11-27 17:03:44
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,560 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 39 ms
52,332 KB
testcase_03 AC 38 ms
51,888 KB
testcase_04 AC 38 ms
52,556 KB
testcase_05 AC 94 ms
100,808 KB
testcase_06 AC 210 ms
107,132 KB
testcase_07 AC 38 ms
51,872 KB
testcase_08 AC 42 ms
60,208 KB
testcase_09 AC 48 ms
66,096 KB
testcase_10 AC 132 ms
107,976 KB
testcase_11 AC 133 ms
107,468 KB
testcase_12 AC 133 ms
107,692 KB
testcase_13 AC 115 ms
99,488 KB
testcase_14 AC 112 ms
100,948 KB
testcase_15 AC 38 ms
52,900 KB
testcase_16 AC 42 ms
59,484 KB
testcase_17 AC 61 ms
73,324 KB
testcase_18 AC 63 ms
75,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = set(map(int, input().split()))
ma = max(X)
dp = [0] * (ma + 1)
ans = 1
for x in sorted(X):
    if dp[x] == 0:
        dp[x] = 1
    ans = max(ans, dp[x])
    for j in range(2 * x, ma + 1, x):
        dp[j] = max(dp[j], dp[x] + 1)
print(ans)
0