結果

問題 No.2144 MM
ユーザー とりゐとりゐ
提出日時 2022-12-03 01:27:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 103,856 KB
最終ジャッジ日時 2024-10-10 03:58:10
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,048 KB
testcase_01 AC 35 ms
52,852 KB
testcase_02 AC 35 ms
52,620 KB
testcase_03 AC 35 ms
53,116 KB
testcase_04 AC 35 ms
52,032 KB
testcase_05 AC 39 ms
52,420 KB
testcase_06 AC 35 ms
52,132 KB
testcase_07 AC 78 ms
102,564 KB
testcase_08 AC 80 ms
103,856 KB
testcase_09 AC 78 ms
103,100 KB
testcase_10 AC 81 ms
103,620 KB
testcase_11 AC 80 ms
103,412 KB
testcase_12 AC 80 ms
103,708 KB
testcase_13 AC 82 ms
102,988 KB
testcase_14 AC 81 ms
103,692 KB
testcase_15 AC 76 ms
97,800 KB
testcase_16 AC 49 ms
69,512 KB
testcase_17 AC 72 ms
93,788 KB
testcase_18 AC 54 ms
72,076 KB
testcase_19 AC 74 ms
93,476 KB
testcase_20 AC 69 ms
91,056 KB
testcase_21 AC 61 ms
81,688 KB
testcase_22 AC 44 ms
65,452 KB
testcase_23 AC 69 ms
90,996 KB
testcase_24 AC 48 ms
69,368 KB
testcase_25 AC 36 ms
52,152 KB
testcase_26 AC 35 ms
52,560 KB
testcase_27 AC 35 ms
51,936 KB
testcase_28 AC 36 ms
53,720 KB
testcase_29 AC 37 ms
52,352 KB
testcase_30 AC 36 ms
53,224 KB
testcase_31 AC 36 ms
52,568 KB
testcase_32 AC 36 ms
53,444 KB
testcase_33 AC 35 ms
52,496 KB
testcase_34 AC 36 ms
52,324 KB
testcase_35 AC 36 ms
53,136 KB
testcase_36 AC 36 ms
52,836 KB
testcase_37 AC 36 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n,m=map(int,input().split())
a=list(map(int,input().split()))
res=0
sgn=1
for i in a:
  res+=sgn*i
  sgn=-sgn
if res%m!=0:
  print(-1)
  exit()

mod=998244353
N=0
for i in a:
  N*=(m-1)
  N+=i
  N%=mod

print((N*pow(m,mod-2,mod)+1)%mod)
0