結果

問題 No.390 最長の数列
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-07 08:31:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-06-26 10:57:11
合計ジャッジ時間 2,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,136 KB
testcase_01 AC 61 ms
75,232 KB
testcase_02 AC 63 ms
75,648 KB
testcase_03 AC 75 ms
75,008 KB
testcase_04 AC 63 ms
75,136 KB
testcase_05 AC 66 ms
87,936 KB
testcase_06 WA -
testcase_07 AC 67 ms
74,496 KB
testcase_08 AC 52 ms
67,456 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 70 ms
85,420 KB
testcase_14 AC 108 ms
96,896 KB
testcase_15 AC 62 ms
74,864 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = 10**6+1
s = [False]*m
for i in map(int, input().split()):
    s[i] = True
dp = [0]*m
mx = 0
for i in range(1, m)[::-1]:
    if i*2**mx >= m:
        break
    if not s[i]:
        continue
    dp[i] = 1
    for j in range(i+i, m, i):
        if j*2**(dp[i]-1) >= m:
            break
        if s[j]:
            dp[i] = max(dp[i], 1+dp[j])
    mx = max(mx, dp[i])
print(mx)
0