結果

問題 No.390 最長の数列
ユーザー 👑 rin204rin204
提出日時 2022-07-02 20:04:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 108,080 KB
最終ジャッジ日時 2024-05-05 17:26:43
合計ジャッジ時間 2,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 97 ms
99,968 KB
testcase_06 AC 183 ms
107,392 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 42 ms
59,776 KB
testcase_09 AC 48 ms
65,536 KB
testcase_10 AC 137 ms
107,776 KB
testcase_11 AC 135 ms
108,032 KB
testcase_12 AC 135 ms
108,080 KB
testcase_13 AC 112 ms
98,816 KB
testcase_14 AC 115 ms
100,480 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 42 ms
59,776 KB
testcase_17 AC 62 ms
73,216 KB
testcase_18 AC 64 ms
75,648 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