結果
問題 | No.2144 MM |
ユーザー | googol_S0 |
提出日時 | 2022-12-02 21:54:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 805 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 110,296 KB |
最終ジャッジ日時 | 2024-10-09 23:09:35 |
合計ジャッジ時間 | 4,497 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,936 KB |
testcase_01 | AC | 39 ms
52,548 KB |
testcase_02 | AC | 39 ms
52,816 KB |
testcase_03 | AC | 42 ms
52,748 KB |
testcase_04 | AC | 38 ms
52,220 KB |
testcase_05 | AC | 38 ms
53,484 KB |
testcase_06 | WA | - |
testcase_07 | AC | 84 ms
104,040 KB |
testcase_08 | WA | - |
testcase_09 | AC | 84 ms
104,716 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 54 ms
72,832 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 37 ms
53,008 KB |
testcase_26 | AC | 37 ms
52,484 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 37 ms
53,268 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
mod=998244353 N,M=map(int,input().split()) A=list(map(int,input().split())) S=0 for i in range(N): if i&1: S-=A[i] else: S+=A[i] if S%M: print(-1) exit() DP=[[0,0] for i in range(N+1)] DP[0][1]=1 for i in range(N): DP[i+1][1]=(DP[i][0]*(M-1))%mod DP[i+1][0]=(DP[i][0]*(M-2)+DP[i][1])%mod ANS=1 C=[(N+1)>>1,N>>1] S=0 P=N for i in range(N): P-=1 if i&1: S=(S+A[i])%M else: S=(S-A[i])%M C[i&1]-=1 if C[0]==C[1]: if -S%M<A[i]: ANS=(ANS+DP[P][1]+DP[P][0]*(A[i]-1))%mod else: ANS=(ANS+DP[P][0]*A[i])%mod else: if C[0]<C[1]: S=-S%M if -(S+1)%M<A[i]: ANS=(ANS+DP[P][1]+DP[P][0]*(A[i]-1))%mod else: ANS=(ANS+DP[P][0]*A[i])%mod print(ANS)