結果

問題 No.2653 [Cherry 6th Tune] Re: start! (Make it Zero!)
ユーザー 👑 KazunKazun
提出日時 2023-06-25 23:31:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 1,297 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 105,464 KB
最終ジャッジ日時 2024-09-29 04:33:10
合計ジャッジ時間 16,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,148 KB
testcase_01 AC 199 ms
77,052 KB
testcase_02 AC 148 ms
76,556 KB
testcase_03 AC 141 ms
75,900 KB
testcase_04 AC 174 ms
93,960 KB
testcase_05 AC 170 ms
84,392 KB
testcase_06 AC 340 ms
79,208 KB
testcase_07 AC 334 ms
80,036 KB
testcase_08 AC 183 ms
104,744 KB
testcase_09 AC 178 ms
105,460 KB
testcase_10 AC 187 ms
105,260 KB
testcase_11 AC 157 ms
99,472 KB
testcase_12 AC 165 ms
105,392 KB
testcase_13 AC 191 ms
77,484 KB
testcase_14 AC 194 ms
77,116 KB
testcase_15 AC 183 ms
76,948 KB
testcase_16 AC 199 ms
77,248 KB
testcase_17 AC 184 ms
77,128 KB
testcase_18 AC 186 ms
77,116 KB
testcase_19 AC 196 ms
76,996 KB
testcase_20 AC 197 ms
77,348 KB
testcase_21 AC 188 ms
77,368 KB
testcase_22 AC 182 ms
77,480 KB
testcase_23 AC 146 ms
76,536 KB
testcase_24 AC 146 ms
76,452 KB
testcase_25 AC 138 ms
77,268 KB
testcase_26 AC 142 ms
77,104 KB
testcase_27 AC 136 ms
76,868 KB
testcase_28 AC 136 ms
76,572 KB
testcase_29 AC 138 ms
76,756 KB
testcase_30 AC 147 ms
76,500 KB
testcase_31 AC 141 ms
76,424 KB
testcase_32 AC 139 ms
76,092 KB
testcase_33 AC 142 ms
88,104 KB
testcase_34 AC 168 ms
96,596 KB
testcase_35 AC 151 ms
88,976 KB
testcase_36 AC 167 ms
86,760 KB
testcase_37 AC 159 ms
92,524 KB
testcase_38 AC 161 ms
87,008 KB
testcase_39 AC 160 ms
96,604 KB
testcase_40 AC 149 ms
88,340 KB
testcase_41 AC 169 ms
85,824 KB
testcase_42 AC 145 ms
88,868 KB
testcase_43 AC 375 ms
79,572 KB
testcase_44 AC 375 ms
79,952 KB
testcase_45 AC 369 ms
79,324 KB
testcase_46 AC 367 ms
80,080 KB
testcase_47 AC 372 ms
80,316 KB
testcase_48 AC 372 ms
79,940 KB
testcase_49 AC 360 ms
79,312 KB
testcase_50 AC 370 ms
80,340 KB
testcase_51 AC 352 ms
79,272 KB
testcase_52 AC 356 ms
79,556 KB
testcase_53 AC 162 ms
104,308 KB
testcase_54 AC 173 ms
104,032 KB
testcase_55 AC 148 ms
99,344 KB
testcase_56 AC 158 ms
104,008 KB
testcase_57 AC 174 ms
104,460 KB
testcase_58 AC 130 ms
105,432 KB
testcase_59 AC 146 ms
105,464 KB
testcase_60 AC 179 ms
104,600 KB
testcase_61 AC 189 ms
104,760 KB
testcase_62 AC 164 ms
105,388 KB
testcase_63 AC 89 ms
76,240 KB
testcase_64 AC 88 ms
75,888 KB
testcase_65 AC 88 ms
76,592 KB
testcase_66 AC 116 ms
76,332 KB
testcase_67 AC 110 ms
76,600 KB
testcase_68 AC 116 ms
76,640 KB
testcase_69 AC 157 ms
77,132 KB
testcase_70 AC 157 ms
77,468 KB
testcase_71 AC 168 ms
77,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    Mod = 998244353

    K = A.count(-1)
    if K == 1:
        i = A.index(-1)
        A[i] = (- sum(A[j] for j in range(N) if i != j)) % M

    if -1 not in A:
        if sum(A) % M != 0:
            return 0

        cum = 0
        k = 0
        for a in A:
            cum += a; cum %= M
            if cum == 0:
                k += 1
        return N - k

    left = min(i for i in range(N) if A[i] == -1)
    right = max (i for i in range(N) if A[i] == -1)

    cum = 0
    H = (M - sum(A[i] for i in range(N) if A[i] != -1 and not(left < i < right))) % M
    S = 0

    for i in range(N):
        if i < left:
            cum += A[i]; cum %= M
            if cum == 0:
                S += pow(M, K-1, Mod)
        elif left <= i < right:
            S += pow(M, K-2, Mod)
        else:
            if i == right:
                cum += H
            else:
                cum += A[i]
            cum %= M
            if cum == 0:
                S += pow(M, K-1, Mod)

    return (N * pow(M, K-1, Mod) - S) % Mod

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())
write("\n".join(map(str, [solve() for _ in range(T)])))
0