結果

問題 No.2144 MM
ユーザー first_vilfirst_vil
提出日時 2022-11-07 12:41:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-07-20 20:55:09
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 42 ms
51,900 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 39 ms
51,692 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 91 ms
103,936 KB
testcase_08 AC 91 ms
104,448 KB
testcase_09 AC 89 ms
104,344 KB
testcase_10 AC 88 ms
104,960 KB
testcase_11 AC 91 ms
104,960 KB
testcase_12 AC 90 ms
104,960 KB
testcase_13 AC 92 ms
103,936 KB
testcase_14 AC 92 ms
104,320 KB
testcase_15 AC 86 ms
98,432 KB
testcase_16 AC 55 ms
69,888 KB
testcase_17 AC 80 ms
93,568 KB
testcase_18 AC 57 ms
72,320 KB
testcase_19 AC 81 ms
94,440 KB
testcase_20 AC 78 ms
90,880 KB
testcase_21 AC 68 ms
81,536 KB
testcase_22 AC 50 ms
64,000 KB
testcase_23 AC 78 ms
91,136 KB
testcase_24 AC 55 ms
67,712 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 35 ms
51,456 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 37 ms
51,712 KB
testcase_30 AC 37 ms
51,968 KB
testcase_31 AC 37 ms
51,968 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 40 ms
51,840 KB
testcase_35 AC 39 ms
51,968 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 42 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))

#check
q=p[:]
for i in range(n-1):
    q[i+1]+=m-q[i]%m
if q[-1]%m:
    print(-1)
    exit(0)

mod=998244353
ans=0
for i in range(n):
    ans=(ans*(m-1)+p[i])%mod
ans=(ans*pow(m,mod-2,mod)+1)%mod
print(ans)
0