結果

問題 No.390 最長の数列
ユーザー mlihua09mlihua09
提出日時 2020-09-15 19:50:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 195 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 114,052 KB
最終ジャッジ日時 2024-06-22 01:54:26
合計ジャッジ時間 2,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,424 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 42 ms
56,880 KB
testcase_03 AC 36 ms
53,072 KB
testcase_04 AC 37 ms
52,692 KB
testcase_05 AC 113 ms
98,484 KB
testcase_06 AC 187 ms
114,052 KB
testcase_07 AC 36 ms
52,908 KB
testcase_08 AC 43 ms
64,576 KB
testcase_09 AC 50 ms
73,332 KB
testcase_10 AC 129 ms
98,696 KB
testcase_11 AC 129 ms
98,412 KB
testcase_12 AC 128 ms
98,196 KB
testcase_13 AC 115 ms
96,168 KB
testcase_14 AC 112 ms
90,900 KB
testcase_15 AC 38 ms
57,176 KB
testcase_16 AC 42 ms
65,060 KB
testcase_17 AC 57 ms
77,024 KB
testcase_18 AC 60 ms
80,264 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:
    dp[x] = max([dp[i] + 1 for i in range(x, M + 1, x)])
    
print(max(dp))
0