結果

問題 No.2120 場合の数の下8桁
ユーザー fumofumofunifumofumofuni
提出日時 2022-11-04 22:26:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,990 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 202,356 KB
実行使用メモリ 237,480 KB
最終ジャッジ日時 2023-09-26 00:55:58
合計ジャッジ時間 6,344 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
237,424 KB
testcase_01 WA -
testcase_02 AC 164 ms
237,128 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 166 ms
237,196 KB
testcase_06 AC 165 ms
237,272 KB
testcase_07 AC 89 ms
237,288 KB
testcase_08 AC 89 ms
237,396 KB
testcase_09 WA -
testcase_10 AC 166 ms
237,232 KB
testcase_11 AC 166 ms
237,280 KB
testcase_12 WA -
testcase_13 AC 168 ms
237,408 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 88 ms
237,272 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

}
0