結果

問題 No.1294 マウンテン数列
ユーザー KudeKude
提出日時 2020-11-21 11:39:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 76,804 KB
最終ジャッジ日時 2024-07-23 15:29:34
合計ジャッジ時間 2,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
67,044 KB
testcase_01 AC 59 ms
67,664 KB
testcase_02 AC 60 ms
67,460 KB
testcase_03 AC 39 ms
52,456 KB
testcase_04 AC 42 ms
52,876 KB
testcase_05 AC 75 ms
74,720 KB
testcase_06 AC 87 ms
76,448 KB
testcase_07 AC 49 ms
61,704 KB
testcase_08 AC 38 ms
52,816 KB
testcase_09 AC 44 ms
59,484 KB
testcase_10 AC 197 ms
76,240 KB
testcase_11 AC 179 ms
76,580 KB
testcase_12 AC 180 ms
76,804 KB
testcase_13 AC 176 ms
76,460 KB
testcase_14 AC 217 ms
76,148 KB
testcase_15 AC 170 ms
76,776 KB
testcase_16 AC 173 ms
76,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
a = list(map(int, input().split()))[::-1]
difmax = max(ai - aj for ai, aj in zip(a, a[1:]))
amax = a[0]
sa = [0] * (amax + 1)
for d in range(difmax, amax + 1):
    dp = [0] * n
    s = dp[0] = 1
    l = 0
    for i in range(1, n):
        while a[l] - a[i] > d:
            s -= dp[l]
            s %= mod
            l += 1
        dp[i-1] += s
        dp[i-1] %= mod
        s += s
        s %= mod
    sa[d] = sum(dp) % mod
ans = sa[0]
ans += sum(i * (sa[i] - sa[i-1]) for i in range(1, amax + 1))
ans %= mod
print(ans)
0