結果

問題 No.2807 Have Another Go (Easy)
ユーザー chro_96chro_96
提出日時 2024-07-12 22:02:18
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 36 ms / 3,000 ms
コード長 1,009 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 31,360 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-07-12 22:02:43
合計ジャッジ時間 2,468 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
21,376 KB
testcase_01 AC 29 ms
21,376 KB
testcase_02 AC 20 ms
21,304 KB
testcase_03 AC 17 ms
21,364 KB
testcase_04 AC 15 ms
21,360 KB
testcase_05 AC 23 ms
21,376 KB
testcase_06 AC 23 ms
21,352 KB
testcase_07 AC 9 ms
21,220 KB
testcase_08 AC 12 ms
21,272 KB
testcase_09 AC 13 ms
21,304 KB
testcase_10 AC 16 ms
21,344 KB
testcase_11 AC 28 ms
21,336 KB
testcase_12 AC 28 ms
21,376 KB
testcase_13 AC 27 ms
21,376 KB
testcase_14 AC 28 ms
21,212 KB
testcase_15 AC 27 ms
21,376 KB
testcase_16 AC 28 ms
21,248 KB
testcase_17 AC 27 ms
21,268 KB
testcase_18 AC 28 ms
21,248 KB
testcase_19 AC 28 ms
21,376 KB
testcase_20 AC 27 ms
21,248 KB
testcase_21 AC 28 ms
21,376 KB
testcase_22 AC 27 ms
21,328 KB
testcase_23 AC 27 ms
21,376 KB
testcase_24 AC 27 ms
21,268 KB
testcase_25 AC 29 ms
21,344 KB
testcase_26 AC 27 ms
21,220 KB
testcase_27 AC 32 ms
21,348 KB
testcase_28 AC 30 ms
21,376 KB
testcase_29 AC 27 ms
21,352 KB
testcase_30 AC 36 ms
21,248 KB
testcase_31 AC 7 ms
21,256 KB
testcase_32 AC 6 ms
21,244 KB
testcase_33 AC 6 ms
21,376 KB
testcase_34 AC 7 ms
21,372 KB
testcase_35 AC 6 ms
21,272 KB
testcase_36 AC 7 ms
21,248 KB
testcase_37 AC 7 ms
21,344 KB
testcase_38 AC 8 ms
21,328 KB
testcase_39 AC 6 ms
21,312 KB
testcase_40 AC 8 ms
21,368 KB
testcase_41 AC 8 ms
21,284 KB
testcase_42 AC 7 ms
21,204 KB
testcase_43 AC 7 ms
21,356 KB
testcase_44 AC 8 ms
21,376 KB
testcase_45 AC 7 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int n = 0;
  int m = 0;
  int k = 0;
  int c[5000] = {};
  
  int res = 0;
  
  long long ans[500000] = {};
  long long mod_num = 998244353LL;
  
  long long dp[1000006] = {};
  long long dp_[1000006] = {};
  
  res = scanf("%d", &n);
  res = scanf("%d", &m);
  res = scanf("%d", &k);
  for (int i = 0; i < k; i++) {
    res = scanf("%d", c+i);
  }
  
  dp[0] = 1LL;
  for (int i = 0; i < n*m; i++) {
    dp[i] %= mod_num;
    for (int j = 0; j < 6; j++) {
      dp[i+j+1] += dp[i];
    }
  }
  
  for (int i = 0; i < 6; i++) {
    dp_[n*m+i] = 1LL;
  }
  
  for (int i = n*m; i > 0; i--) {
    for (int j = 0; j < 6; j++) {
      dp_[i-1] += dp_[i+j];
    }
    dp_[i-1] %= mod_num;
  }
  
  for (int i = 0; i <= n*m; i++) {
    ans[i%n] += (dp[i]*dp_[i])%mod_num;
  }
  
  for (int i = 0; i < n; i++) {
    ans[i%n] += mod_num-(((dp[i]*dp[n])%mod_num)*dp_[i+n])%mod_num;
  }
  
  for (int i = 0; i < k; i++) {
    printf("%lld\n", ans[c[i]]%mod_num);
  }
  
  return 0;
}
0