結果

問題 No.2144 MM
ユーザー 👑 KazunKazun
提出日時 2022-12-03 00:13:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 104,048 KB
最終ジャッジ日時 2024-10-10 02:37:33
合計ジャッジ時間 3,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 38 ms
52,884 KB
testcase_02 AC 37 ms
52,832 KB
testcase_03 AC 37 ms
53,224 KB
testcase_04 AC 41 ms
52,212 KB
testcase_05 AC 37 ms
52,088 KB
testcase_06 AC 37 ms
52,952 KB
testcase_07 AC 81 ms
103,308 KB
testcase_08 AC 86 ms
104,048 KB
testcase_09 AC 81 ms
103,072 KB
testcase_10 AC 85 ms
103,064 KB
testcase_11 AC 86 ms
103,016 KB
testcase_12 AC 86 ms
103,048 KB
testcase_13 AC 86 ms
103,020 KB
testcase_14 AC 92 ms
103,336 KB
testcase_15 AC 81 ms
97,024 KB
testcase_16 AC 53 ms
69,376 KB
testcase_17 AC 77 ms
91,904 KB
testcase_18 AC 59 ms
71,424 KB
testcase_19 AC 83 ms
93,440 KB
testcase_20 AC 73 ms
89,472 KB
testcase_21 AC 64 ms
80,512 KB
testcase_22 AC 46 ms
63,360 KB
testcase_23 AC 72 ms
90,240 KB
testcase_24 AC 51 ms
67,200 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 38 ms
52,068 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 37 ms
52,224 KB
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 37 ms
51,820 KB
testcase_34 AC 37 ms
51,712 KB
testcase_35 AC 38 ms
52,352 KB
testcase_36 AC 37 ms
51,840 KB
testcase_37 AC 37 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    # いい数列かの確認
    S=0
    for i in range(N):
        S+=(1 if i%2==0 else -1)*A[i]

    if S%M:
        return -1

    Mod=998244353
    X=0
    for a in A:
        X=((M-1)*X+a)%Mod

    return (X*pow(M,Mod-2,Mod)+1)%Mod

#==================================================
print(solve())
0