結果

問題 No.390 最長の数列
ユーザー ronpooronpoo
提出日時 2023-08-29 11:00:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,700 KB
最終ジャッジ日時 2024-06-09 20:57:46
合計ジャッジ時間 2,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 84 ms
90,368 KB
testcase_06 AC 190 ms
97,604 KB
testcase_07 AC 36 ms
52,880 KB
testcase_08 AC 45 ms
65,024 KB
testcase_09 AC 45 ms
65,792 KB
testcase_10 AC 109 ms
98,160 KB
testcase_11 AC 110 ms
98,220 KB
testcase_12 AC 108 ms
98,700 KB
testcase_13 AC 85 ms
89,888 KB
testcase_14 AC 98 ms
90,688 KB
testcase_15 AC 34 ms
56,864 KB
testcase_16 AC 42 ms
64,768 KB
testcase_17 AC 55 ms
71,552 KB
testcase_18 AC 58 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = list(map(int, input().split()))

xma = max(x)
x.sort()
dp = [-1] * (xma+1)
for i in range(N):
    dp[x[i]] = 1

for i in range(N):
    v = x[i]    
    for j in range(2*v, xma+1, v):
        if dp[j] != -1:
            dp[j] = max(dp[j], dp[v] + 1)

ans = max(dp)        
print(ans)
0