結果

問題 No.390 最長の数列
ユーザー rlangevinrlangevin
提出日時 2023-10-11 12:13:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 1,088 ms
コンパイル使用メモリ 81,492 KB
実行使用メモリ 93,928 KB
最終ジャッジ日時 2024-09-13 11:01:06
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,012 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 38 ms
53,036 KB
testcase_03 AC 38 ms
53,272 KB
testcase_04 AC 39 ms
52,028 KB
testcase_05 AC 86 ms
89,992 KB
testcase_06 AC 256 ms
93,452 KB
testcase_07 AC 39 ms
52,324 KB
testcase_08 AC 46 ms
64,560 KB
testcase_09 AC 50 ms
66,104 KB
testcase_10 AC 119 ms
93,500 KB
testcase_11 AC 127 ms
93,928 KB
testcase_12 AC 129 ms
93,320 KB
testcase_13 AC 119 ms
87,624 KB
testcase_14 AC 102 ms
84,228 KB
testcase_15 AC 40 ms
57,276 KB
testcase_16 AC 45 ms
65,028 KB
testcase_17 AC 56 ms
70,992 KB
testcase_18 AC 60 ms
72,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
X.sort(reverse=True)
M = max(X)
dp = [0] * (M + 1)
for x in X:
    now = 0
    for i in range(2 * x, M + 1, x):
        now = max(now, dp[i])
    dp[x] = now + 1
    
print(max(dp))
0