結果

問題 No.2144 MM
ユーザー shobonvipshobonvip
提出日時 2022-12-02 23:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-10-10 02:00:39
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 80 ms
102,400 KB
testcase_08 AC 405 ms
106,496 KB
testcase_09 AC 78 ms
103,168 KB
testcase_10 AC 377 ms
106,496 KB
testcase_11 AC 388 ms
106,880 KB
testcase_12 AC 388 ms
106,496 KB
testcase_13 AC 388 ms
106,752 KB
testcase_14 AC 388 ms
106,368 KB
testcase_15 AC 331 ms
102,912 KB
testcase_16 AC 138 ms
81,912 KB
testcase_17 AC 306 ms
99,456 KB
testcase_18 AC 52 ms
72,448 KB
testcase_19 AC 308 ms
99,636 KB
testcase_20 AC 276 ms
96,768 KB
testcase_21 AC 221 ms
89,856 KB
testcase_22 AC 97 ms
74,880 KB
testcase_23 AC 289 ms
96,512 KB
testcase_24 AC 125 ms
79,744 KB
testcase_25 AC 40 ms
52,352 KB
testcase_26 AC 38 ms
51,584 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 39 ms
52,992 KB
testcase_29 AC 40 ms
52,480 KB
testcase_30 AC 40 ms
52,736 KB
testcase_31 AC 37 ms
52,096 KB
testcase_32 AC 40 ms
52,864 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 37 ms
51,840 KB
testcase_35 AC 38 ms
51,968 KB
testcase_36 AC 37 ms
52,352 KB
testcase_37 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def isgood(n,m,a):
	g = 0
	for i in range(n):
		if i % 2 == 0:
			g += a[i]
		else:
			g -= a[i]
	if g % m == 0:
		return True
	return False

def count(n,m,e,l,t):
	if n % 2 == 0:
		r = (pow(m-1, n, mod) - 1) * pow(m, mod-2, mod) % mod
		if t == 0:
			if e <= 0 < e+l or e <= m < e+l: return (l*r+1) % mod
		else:
			if e-l < 0 <= e or e-l < m <= e: return (l*r+1) % mod
		return l*r % mod
	else:
		r = (pow(m-1, n, mod) + 1) * pow(m, mod-2, mod) % mod
		if t == 1:
			if e-l < 1 <= e or e-l < 1-m <= e: return (l*r-1) % mod
			return l*r % mod
		else:
			if e <= m-1 < e+l or e <= 2*m-1 < e+l: return (l*r-1) % mod
			return l*r % mod

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

if isgood(n,m,a):
	g = 0
	ans = 0
	for i in range(n):
		ans += count(n-i-1,m,g,a[i],i%2)
		if i%2 == 0:
			g = (g+a[i]) % m
		else:
			g = (g-a[i]) % m
		#print(ans)
	print((ans+1) % mod)
else:
	print(-1)
0