結果
問題 | No.2120 場合の数の下8桁 |
ユーザー | fumofumofuni |
提出日時 | 2022-11-04 22:26:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 2,169 ms |
コンパイル使用メモリ | 204,776 KB |
実行使用メモリ | 237,792 KB |
最終ジャッジ日時 | 2024-07-18 20:21:50 |
合計ジャッジ時間 | 8,098 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 231 ms
237,780 KB |
testcase_01 | WA | - |
testcase_02 | AC | 233 ms
237,772 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 232 ms
237,696 KB |
testcase_06 | AC | 233 ms
237,780 KB |
testcase_07 | AC | 156 ms
237,560 KB |
testcase_08 | AC | 154 ms
237,696 KB |
testcase_09 | WA | - |
testcase_10 | AC | 231 ms
237,772 KB |
testcase_11 | AC | 231 ms
237,740 KB |
testcase_12 | WA | - |
testcase_13 | AC | 231 ms
237,564 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 155 ms
237,568 KB |
testcase_19 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //#pragma GCC optimize("Ofast") #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define vtpl(x,y,z) vector<tuple<x,y,z>> #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={1,0,-1,0,1,1,-1,-1,0}; const ll dx[9]={0,1,0,-1,1,-1,1,-1,0}; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } ll modpow(ll a,ll n, ll mod) { a%=mod;if(a==0)return 0; ll res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } const ll base=1e7+10; vl dp(base),two(base),five(base); ll phi=1; int main(){ rep(i,9)phi*=2; rep(i,7)phi*=5; ll m,n;cin >> m >> n; if(m<n){ cout << "00000000" << endl;return 0; } dp[0]=1; ll mod=1e8; repl(i,1,base){ two[i]=two[i-1],five[i-1]=five[i-1];dp[i]=dp[i-1]; ll f=i; while(f%2==0){ f/=2;two[i]++; } while(f%5==0){ f/=5;five[i]++; } dp[i]=(dp[i]*f)%mod; } ll ans=dp[m]; ans=ans*modpow(dp[n],phi-1,mod)%mod; ans=ans*modpow(dp[m-n],phi-1,mod)%mod; rep(i,two[m]-two[n]-two[m-n]){ ans=ans*2%mod; } rep(i,five[m]-five[n]-five[m-n]){ ans=ans*5%mod; } string f=to_string(ans); while(f.size()<8)f="0"+f; cout << f << endl; }