結果

問題 No.390 最長の数列
ユーザー 👑 KazunKazun
提出日時 2021-02-25 03:56:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 92,512 KB
最終ジャッジ日時 2024-09-25 03:57:19
合計ジャッジ時間 3,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,344 KB
testcase_01 AC 38 ms
52,776 KB
testcase_02 AC 38 ms
52,408 KB
testcase_03 AC 38 ms
51,984 KB
testcase_04 AC 39 ms
52,168 KB
testcase_05 AC 100 ms
90,120 KB
testcase_06 AC 170 ms
90,808 KB
testcase_07 AC 38 ms
52,012 KB
testcase_08 AC 44 ms
65,604 KB
testcase_09 AC 48 ms
65,740 KB
testcase_10 AC 105 ms
91,536 KB
testcase_11 AC 105 ms
92,144 KB
testcase_12 AC 105 ms
92,512 KB
testcase_13 AC 81 ms
87,492 KB
testcase_14 AC 93 ms
83,688 KB
testcase_15 AC 40 ms
57,468 KB
testcase_16 AC 44 ms
64,652 KB
testcase_17 AC 54 ms
70,792 KB
testcase_18 AC 56 ms
70,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))
X.sort(reverse=True)

X_max=X[0]
DP=[0]*(X_max+1)

for x in X:
    m=0
    y=2*x
    while y<=X_max:
        if m<DP[y]:
            m=DP[y]
        y+=x
    DP[x]=m+1

print(max(DP))
0