結果
問題 | No.2206 Popcount Sum 2 |
ユーザー | umezo |
提出日時 | 2023-02-07 07:32:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,262 bytes |
コンパイル時間 | 2,063 ms |
コンパイル使用メモリ | 204,020 KB |
実行使用メモリ | 16,512 KB |
最終ジャッジ日時 | 2024-07-05 06:27:35 |
合計ジャッジ時間 | 11,321 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
16,276 KB |
testcase_01 | AC | 20 ms
16,288 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#define rep(i, n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; const int p=450; const int MAX=500500; const int MOD=998244353; ll fac[MAX],finv[MAX],inv[MAX]; vector<ll> S[510]; void init(){ fac[0]=fac[1]=1; finv[0]=finv[1]=1; inv[1]=1; for(int i=2;i<MAX;i++){ fac[i]=fac[i-1]*i%MOD; inv[i]=MOD-inv[MOD%i]*(MOD/i)%MOD; finv[i]=finv[i-1]*inv[i]%MOD; } } ll nCr(int n,int k){ if(n<k) return 0; if(n<0 || k<0) return 0; return fac[n]*(finv[k]*finv[n-k]%MOD)%MOD; } ll modpow(ll x,ll n){ ll ans=1; while(n){ if(n&1) ans=ans*x%MOD; x=x*x%MOD; n/=2; } return ans; } ll nSr(int n,int k){ int a=n/p,b=n%p; ll ret=0; for(int i=0;i<=b;i++){ if(k<i) break; if(a*p<k-i) ret=(ret+S[a][a*p]*nCr(b,i)%MOD)%MOD; else ret=(ret+S[a][k-i]*nCr(b,i)%MOD)%MOD; } return ret; }; int main() { ios::sync_with_stdio(false); std::cin.tie(nullptr); init(); for(int i=0;i<510;i++){ S[i].push_back(1); for(int j=1;j<=i;j++) S[i].push_back((S[i].back()+nCr(i*p,j))%MOD); } int t; cin>>t; while(t--){ ll n,m; cin>>n>>m; cout<<nSr(n-1,m-1)*(modpow(2,n)-1)%MOD<<'\n'; } return 0; }