結果
| 問題 |
No.2326 Factorial to the Power of Factorial to the...
|
| コンテスト | |
| ユーザー |
FplusFplusF
|
| 提出日時 | 2023-05-28 14:31:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,049 bytes |
| コンパイル時間 | 1,985 ms |
| コンパイル使用メモリ | 194,496 KB |
| 最終ジャッジ日時 | 2025-02-13 11:37:43 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 WA * 9 |
ソースコード
#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;
}
}
cout << cnt*modpow(f[n],f[n],mod)%mod << '\n';
}
FplusFplusF