結果

問題 No.1555 Constructed Balancing Sequence
ユーザー chineristACchineristAC
提出日時 2021-01-12 04:02:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 97,776 KB
最終ジャッジ日時 2024-06-22 19:30:08
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,628 KB
testcase_01 AC 35 ms
52,408 KB
testcase_02 AC 35 ms
53,556 KB
testcase_03 AC 35 ms
53,000 KB
testcase_04 AC 35 ms
53,948 KB
testcase_05 AC 34 ms
52,440 KB
testcase_06 AC 35 ms
52,728 KB
testcase_07 AC 34 ms
52,884 KB
testcase_08 AC 37 ms
53,008 KB
testcase_09 AC 36 ms
53,876 KB
testcase_10 AC 36 ms
53,216 KB
testcase_11 AC 35 ms
52,404 KB
testcase_12 AC 73 ms
95,940 KB
testcase_13 AC 70 ms
95,328 KB
testcase_14 AC 76 ms
97,776 KB
testcase_15 AC 65 ms
92,372 KB
testcase_16 AC 78 ms
97,508 KB
testcase_17 AC 45 ms
63,568 KB
testcase_18 AC 68 ms
94,628 KB
testcase_19 AC 66 ms
94,336 KB
testcase_20 AC 66 ms
93,288 KB
testcase_21 AC 69 ms
94,268 KB
testcase_22 AC 70 ms
93,520 KB
testcase_23 AC 73 ms
95,948 KB
testcase_24 AC 70 ms
96,024 KB
testcase_25 AC 67 ms
94,336 KB
testcase_26 AC 70 ms
95,548 KB
testcase_27 AC 71 ms
96,136 KB
testcase_28 AC 61 ms
84,168 KB
testcase_29 AC 67 ms
90,384 KB
testcase_30 AC 66 ms
90,084 KB
testcase_31 AC 57 ms
80,404 KB
testcase_32 AC 72 ms
92,712 KB
testcase_33 AC 67 ms
92,692 KB
testcase_34 AC 56 ms
79,336 KB
testcase_35 AC 58 ms
81,744 KB
testcase_36 AC 59 ms
83,248 KB
testcase_37 AC 63 ms
87,200 KB
testcase_38 AC 34 ms
53,204 KB
testcase_39 AC 34 ms
52,932 KB
testcase_40 AC 36 ms
53,184 KB
testcase_41 AC 34 ms
53,112 KB
testcase_42 AC 34 ms
53,548 KB
testcase_43 AC 66 ms
94,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#maspyさんのコード(https://yukicoder.me/submissions/602281)をもとにつくったO(NlogK)解

def check(N,K,A):
    import itertools
    MOD = 998_244_353
    def is_balanced(A, Acum):
        for a, b in zip(A[1:], Acum[1:]):
            if a > b:
                return False
        return True

    def main(N, K, A):
        S = [0] + list(itertools.accumulate(A))
        if not is_balanced(A, S):
            return 0

        res = 1

        for n in range(N-2,-1,-1):
            tmp = A[n] - 1 + S[n]
            flag = False
            for j in range(n+1,N):
                if tmp > K:
                    break
                if A[j]-1 >= tmp:
                    flag = True
                    break
                tmp *= 2
            if flag:
                res *= (A[n]+1+K)
                res %= MOD

        return res

    return main(N,K,A)

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