結果
問題 | No.2058 Binary String |
ユーザー | HIcoder |
提出日時 | 2023-07-13 22:10:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 1,430 bytes |
コンパイル時間 | 996 ms |
コンパイル使用メモリ | 109,904 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-09-15 08:01:16 |
合計ジャッジ時間 | 2,495 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,272 KB |
testcase_01 | AC | 7 ms
6,272 KB |
testcase_02 | AC | 9 ms
6,400 KB |
testcase_03 | AC | 7 ms
6,400 KB |
testcase_04 | AC | 7 ms
6,400 KB |
testcase_05 | AC | 6 ms
6,400 KB |
testcase_06 | AC | 7 ms
6,400 KB |
testcase_07 | AC | 21 ms
6,400 KB |
testcase_08 | AC | 9 ms
6,400 KB |
testcase_09 | AC | 23 ms
6,400 KB |
testcase_10 | AC | 13 ms
6,400 KB |
testcase_11 | AC | 10 ms
6,400 KB |
testcase_12 | AC | 15 ms
6,400 KB |
testcase_13 | AC | 12 ms
6,400 KB |
testcase_14 | AC | 11 ms
6,400 KB |
testcase_15 | AC | 11 ms
6,400 KB |
testcase_16 | AC | 11 ms
6,400 KB |
testcase_17 | AC | 12 ms
6,400 KB |
testcase_18 | AC | 7 ms
6,400 KB |
testcase_19 | AC | 23 ms
6,400 KB |
testcase_20 | AC | 20 ms
6,400 KB |
testcase_21 | AC | 23 ms
6,400 KB |
testcase_22 | AC | 23 ms
6,272 KB |
testcase_23 | AC | 24 ms
6,400 KB |
testcase_24 | AC | 24 ms
6,400 KB |
testcase_25 | AC | 24 ms
6,400 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include <unordered_set> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; //xのy乗 ll mod_pow(ll x,ll y,ll mod){ ll power=x; ll ret = 1; while(y>0){ if(y&1){ ret = ret*power%mod; } power = power*power%mod; y = y>>1; } return ret; } struct combination{ typedef long long ll; std::vector<ll> fact,ifact; combination(ll n): fact(n+1),ifact(n+1){ fact[0]=1;//0!=1通り for(ll i=1;i<=n;i++) fact[i] = fact[i-1]*i%MOD; //ifact[n] = fact[n].inv(); // n!の逆元がifact[n] ifact[n] = mod_pow(fact[n],MOD-2,MOD);// n!を(mod-2)乗した後でmodであまりをとった for(ll i=n;i>=1;i--) ifact[i-1] = ifact[i]*i%MOD; } ll operator()(ll n,ll k){ if(k<0 || k>n) return 0; // n!/( k!*(n-k)! ) return (fact[n]*ifact[k])%MOD * ifact[n-k]%MOD; } }; combination comb(2*100000+10); int main(){ ll N,K; cin>>N>>K; ll ans=0; for(int i=1;i<=N-1;i++){ ll res=mod_pow(i,K,MOD); res*=comb(N-1,i); res%=MOD; ans+=res; ans%=MOD; } cout<<ans<<endl; }