結果

問題 No.2807 Have Another Go (Easy)
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-07-17 01:58:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 3,000 ms
コード長 810 bytes
コンパイル時間 4,893 ms
コンパイル使用メモリ 309,848 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-17 01:58:16
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 12 ms
7,156 KB
testcase_02 AC 20 ms
6,816 KB
testcase_03 AC 11 ms
6,948 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 15 ms
6,944 KB
testcase_06 AC 14 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 17 ms
7,296 KB
testcase_12 AC 16 ms
7,244 KB
testcase_13 AC 16 ms
7,200 KB
testcase_14 AC 17 ms
7,148 KB
testcase_15 AC 17 ms
7,212 KB
testcase_16 AC 16 ms
7,068 KB
testcase_17 AC 16 ms
7,200 KB
testcase_18 AC 17 ms
7,240 KB
testcase_19 AC 16 ms
7,100 KB
testcase_20 AC 17 ms
7,240 KB
testcase_21 AC 17 ms
7,128 KB
testcase_22 AC 17 ms
7,064 KB
testcase_23 AC 18 ms
7,204 KB
testcase_24 AC 17 ms
7,064 KB
testcase_25 AC 16 ms
7,208 KB
testcase_26 AC 16 ms
7,212 KB
testcase_27 AC 17 ms
7,096 KB
testcase_28 AC 17 ms
7,212 KB
testcase_29 AC 17 ms
7,296 KB
testcase_30 AC 17 ms
7,192 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 7 ms
6,944 KB
testcase_41 AC 8 ms
6,940 KB
testcase_42 AC 9 ms
6,940 KB
testcase_43 AC 6 ms
6,944 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n,m,k;cin>>n>>m>>k;
  vc<mint>dp(2*n,0); dp[0]=1;
  rep(i,2*n)for(int j=1;j<=6;j++)if(i+j<2*n)dp[i+j]+=dp[i];
  auto f=[&](int a)->mint{
    mint res=0;
    int base=2*n-a-6;
    rep(i,6)if(base+i>=0){
      res+=dp[base+i]*(1+i);
    }
    return res;
  };
  rep(z,k){
    int a;cin>>a;
    mint ans=dp[a]*f(a)+dp[a+n]*f(a+n)-dp[a]*dp[n]*f(a+n);
    cout<<ans.val()<<"\n";
  }
}
0