結果
問題 | No.2144 MM |
ユーザー | chro_96 |
提出日時 | 2022-12-02 22:38:18 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,424 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 31,232 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-10-10 00:15:06 |
合計ジャッジ時間 | 1,982 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 4 ms
7,936 KB |
testcase_02 | WA | - |
testcase_03 | AC | 4 ms
7,912 KB |
testcase_04 | AC | 4 ms
7,960 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
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 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <stdio.h> int main () { int n = 0; int m = 0; long long a[200000] = {}; int res = 0; long long ans = 1LL; long long mod_num = 998244353LL; long long powm1[200000] = {}; long long dp[200000][2] = {}; long long sum = 0LL; int p = 0; res = scanf("%d", &n); res = scanf("%d", &m); for (int i = 0; i < n; i++) { res = scanf("%lld", a+i); sum += a[i]; } if ((n <= 2 && a[0] != a[1]) || (n%2 == 0 && sum%2LL == 1LL)) { printf("-1\n"); return 0; } if (n <= 2) { printf("%lld\n", a[0]+1LL); return 0; } if (n%2 == 1) { powm1[0] = 1LL; for (int i = 1; i < n; i++) { powm1[i] = (((long long) (m-1))*powm1[i-1]) % mod_num; } for (int i = 0; i < n; i++) { ans += powm1[n-i-1]*a[i]; } printf("%lld\n", ans%mod_num); return 0; } dp[0][0] = 1LL; dp[0][1] = 0LL; for (int i = 1; i < n; i++) { dp[i][0] = dp[i-1][0]*((long long) (m/2)); dp[i][0] = dp[i-1][1]*((long long) ((m-2)/2)); dp[i][0] %= mod_num; dp[i][1] = dp[i-1][1]*((long long) (m/2)); dp[i][1] = dp[i-1][0]*((long long) ((m-2)/2)); dp[i][1] %= mod_num; } for (int i = 0; i < n; i++) { ans += ((long long) ((a[i]+1)/2))*dp[n-i-1][p]; ans += ((long long) (a[i]/2))*dp[n-i-1][1-p]; ans %= mod_num; if (a[i]%2LL == 1LL) { p = 1-p; } } printf("%lld\n", ans); return 0; }