結果

問題 No.2326 Factorial to the Power of Factorial to the...
ユーザー FplusFplusFFplusFplusF
提出日時 2023-05-28 14:45:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 201,516 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-27 10:32:26
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
4,384 KB
testcase_06 AC 3 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 WA -
testcase_14 AC 3 ms
4,380 KB
testcase_15 WA -
testcase_16 AC 1 ms
4,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
ll modpow(ll a,ll b,ll mod){
    if(mod==1) return 0;
    if(b==0) return 1;
    ll p=a,ret=1;
    for(ll i=0;i<=62;i++){
        if(b&(1ll<<i)){
            ret*=p;
            ret%=mod;
        }
        p=(p%mod)*(p%mod);
        p%=mod;
    }
    return ret;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    const ll mod=1e9+7;
    ll n,p;
    cin >> n >> p;
    vector<ll> f(n+1);
    f[0]=1;
    f[1]=1;
    for(ll i=2;i<=n;i++) f[i]=f[i-1]*i%mod;
    ll cnt=0;
    for(ll i=1;i<=n;i++){
        ll x=i;
        while(x%p==0){
            x/=p;
            cnt++;
            cnt%=mod;
        }
    }
    if(n<p) cout << "0\n";
    else cout << cnt*modpow(f[n],f[n],mod)%mod << '\n';
}
0