結果

問題 No.390 最長の数列
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-20 13:05:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 244 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,940 KB
最終ジャッジ日時 2024-11-20 22:01:34
合計ジャッジ時間 24,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,334 ms
18,456 KB
testcase_01 AC 561 ms
18,480 KB
testcase_02 AC 1,098 ms
18,460 KB
testcase_03 AC 729 ms
18,500 KB
testcase_04 AC 1,142 ms
18,536 KB
testcase_05 AC 184 ms
24,596 KB
testcase_06 TLE -
testcase_07 AC 596 ms
18,624 KB
testcase_08 AC 41 ms
18,544 KB
testcase_09 AC 582 ms
18,524 KB
testcase_10 AC 818 ms
24,436 KB
testcase_11 AC 964 ms
24,404 KB
testcase_12 AC 851 ms
24,524 KB
testcase_13 AC 1,746 ms
23,776 KB
testcase_14 TLE -
testcase_15 AC 40 ms
18,456 KB
testcase_16 AC 40 ms
18,540 KB
testcase_17 AC 65 ms
18,996 KB
testcase_18 AC 88 ms
43,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

U = 10**6
N = int(input())
X = list(map(int, input().split()))
X.sort()

dp = [0] * (U + 1)
for i in X:
    dp[i] = max(dp[i], 1)
    j = 2 * i
    while j <= U:
        dp[j] = max(dp[j], dp[i] + 1)
        j += i

print(max(dp[i] for i in X))
0