結果

問題 No.2144 MM
ユーザー 👑 chro_96chro_96
提出日時 2022-12-03 00:57:25
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-04-18 10:05:04
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,052 KB
testcase_01 AC 5 ms
7,924 KB
testcase_02 AC 5 ms
7,936 KB
testcase_03 AC 5 ms
8,064 KB
testcase_04 AC 6 ms
7,936 KB
testcase_05 AC 4 ms
8,064 KB
testcase_06 AC 6 ms
8,064 KB
testcase_07 AC 29 ms
7,936 KB
testcase_08 WA -
testcase_09 AC 28 ms
8,060 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 30 ms
7,936 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 12 ms
8,064 KB
testcase_17 AC 26 ms
7,936 KB
testcase_18 AC 11 ms
8,052 KB
testcase_19 AC 25 ms
7,936 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 7 ms
7,936 KB
testcase_23 WA -
testcase_24 AC 9 ms
8,064 KB
testcase_25 AC 4 ms
8,064 KB
testcase_26 AC 4 ms
7,936 KB
testcase_27 AC 4 ms
8,064 KB
testcase_28 AC 5 ms
8,060 KB
testcase_29 AC 6 ms
8,012 KB
testcase_30 AC 3 ms
8,064 KB
testcase_31 AC 4 ms
7,936 KB
testcase_32 AC 4 ms
8,060 KB
testcase_33 AC 3 ms
8,020 KB
testcase_34 AC 3 ms
8,064 KB
testcase_35 AC 6 ms
8,064 KB
testcase_36 AC 6 ms
8,064 KB
testcase_37 AC 5 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 dp[200000][3] = {};
  
  long long sum[2] = {};
  long long tmp = 0LL;
  
  res = scanf("%d", &n);
  res = scanf("%d", &m);
  for (int i = 0; i < n; i++) {
    res = scanf("%lld", a+i);
    sum[i%2] += a[i];
  }
  
  if (sum[0]%m != sum[1]%m) {
    printf("-1\n");
    return 0;
  }
  
  dp[0][0] = 1LL;
  dp[0][1] = 1LL;
  dp[0][2] = 0LL;
  for (int i = 1; i < n; i++) {
    dp[i][0] = dp[i-1][0]+((long long) (m-2))*dp[i-1][1];
    dp[i][1] = dp[i-1][0]+dp[i-1][2]+((long long) (m-3))*dp[i-1][1];
    dp[i][2] = dp[i-1][2]+((long long) (m-2))*dp[i-1][1];
    dp[i][0] %= mod_num;
    dp[i][1] %= mod_num;
    dp[i][2] %= mod_num;
  }
  
  for (int i = 0; i < n-1; i++) {
    long long cnt = 0LL;
    if (a[i] > tmp) {
      ans += dp[n-i-2][0];
      cnt += 1LL;
    }
    if (tmp > 0LL && a[i] >= tmp) {
      ans += dp[n-i-2][2];
      cnt += 1LL;
    }
    ans += dp[n-i-2][1]*(a[i]-cnt);
    tmp = (((long long)m)-tmp+a[i])%((long long)m);
  }
  
  printf("%lld\n", ans%mod_num);
  return 0;
}
0