結果

問題 No.2144 MM
ユーザー chro_96
提出日時 2022-12-02 22:54:48
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 791 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 01:23:38
合計ジャッジ時間 1,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 6 WA * 29
権限があれば一括ダウンロードができます

ソースコード

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 powm1[200000] = {};
  
  long long sum[2] = {};
  int p = 0;
  
  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 ((n <= 2 && a[0] != a[1]) || (sum[0]%m != sum[1]%m)) {
    printf("-1\n");
    return 0;
  }
  
  if (n <= 2) {
    printf("%lld\n", a[0]+1LL);
    return 0;
  }
  
  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-1; i++) {
    ans += powm1[n-i-2]*a[i];
  }
  
  printf("%lld\n", ans%mod_num);
  return 0;
}
0