結果

問題 No.1555 Constructed Balancing Sequence
ユーザー maspymaspy
提出日時 2021-05-30 03:04:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,516 KB
最終ジャッジ日時 2024-06-22 19:35:29
合計ジャッジ時間 5,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 141 ms
18,412 KB
testcase_13 AC 143 ms
18,452 KB
testcase_14 AC 145 ms
19,328 KB
testcase_15 AC 131 ms
19,340 KB
testcase_16 AC 142 ms
18,980 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 137 ms
21,312 KB
testcase_19 AC 134 ms
21,276 KB
testcase_20 AC 135 ms
21,304 KB
testcase_21 AC 138 ms
21,304 KB
testcase_22 AC 135 ms
21,308 KB
testcase_23 AC 135 ms
21,308 KB
testcase_24 AC 135 ms
21,436 KB
testcase_25 AC 135 ms
21,304 KB
testcase_26 AC 136 ms
21,304 KB
testcase_27 AC 133 ms
21,308 KB
testcase_28 AC 102 ms
18,328 KB
testcase_29 AC 125 ms
20,316 KB
testcase_30 AC 124 ms
20,264 KB
testcase_31 AC 86 ms
16,140 KB
testcase_32 AC 124 ms
19,888 KB
testcase_33 AC 126 ms
19,988 KB
testcase_34 AC 86 ms
15,976 KB
testcase_35 AC 92 ms
17,136 KB
testcase_36 AC 98 ms
16,932 KB
testcase_37 AC 106 ms
17,960 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 141 ms
21,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998_244_353

def main(N, K, A):
    S = [0] * (N+1)
    for i in range(N):
        S[i+1] = S[i] + A[i]
    if any(a > b for a, b in zip(A[1:], S[1:])):
        return 0
    v = A[-1] - 1
    ans = 1
    for n in range(N - 2, -1, -1):
        s, a = S[n], A[n]
        if v < s + a - 1:
            pass
        else:
            ans = ans * (A[n] + K + 1) % MOD
        v = max(A[n] - 1, v // 2)
    return ans

N, K = map(int, input().split())
A = list(map(int, input().split()))
print(main(N, K, A))
0