結果

問題 No.1259 スイッチ
ユーザー iomiriomir
提出日時 2023-04-03 19:26:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,092 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 170,252 KB
実行使用メモリ 26,668 KB
最終ジャッジ日時 2024-09-25 01:14:13
合計ジャッジ時間 7,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 63 ms
17,224 KB
testcase_11 AC 99 ms
25,284 KB
testcase_12 AC 61 ms
16,564 KB
testcase_13 AC 35 ms
11,140 KB
testcase_14 AC 54 ms
14,508 KB
testcase_15 AC 34 ms
10,936 KB
testcase_16 AC 87 ms
21,300 KB
testcase_17 AC 48 ms
14,072 KB
testcase_18 AC 103 ms
23,764 KB
testcase_19 AC 105 ms
23,644 KB
testcase_20 AC 64 ms
17,664 KB
testcase_21 AC 105 ms
25,668 KB
testcase_22 AC 32 ms
10,112 KB
testcase_23 AC 100 ms
23,332 KB
testcase_24 AC 69 ms
18,240 KB
testcase_25 AC 65 ms
17,972 KB
testcase_26 AC 110 ms
26,040 KB
testcase_27 AC 87 ms
21,832 KB
testcase_28 AC 69 ms
18,056 KB
testcase_29 AC 89 ms
21,808 KB
testcase_30 AC 50 ms
14,584 KB
testcase_31 AC 75 ms
19,880 KB
testcase_32 AC 33 ms
10,240 KB
testcase_33 AC 108 ms
26,208 KB
testcase_34 AC 54 ms
15,600 KB
testcase_35 AC 78 ms
20,824 KB
testcase_36 AC 73 ms
19,448 KB
testcase_37 AC 68 ms
18,308 KB
testcase_38 AC 67 ms
17,280 KB
testcase_39 AC 101 ms
25,064 KB
testcase_40 AC 109 ms
25,280 KB
testcase_41 AC 83 ms
21,316 KB
testcase_42 AC 109 ms
25,660 KB
testcase_43 AC 59 ms
16,564 KB
testcase_44 AC 104 ms
24,696 KB
testcase_45 AC 117 ms
26,668 KB
testcase_46 AC 58 ms
15,832 KB
testcase_47 AC 109 ms
26,484 KB
testcase_48 AC 48 ms
14,312 KB
testcase_49 AC 105 ms
25,656 KB
testcase_50 AC 56 ms
15,876 KB
testcase_51 AC 32 ms
10,112 KB
testcase_52 AC 104 ms
25,276 KB
testcase_53 AC 44 ms
12,960 KB
testcase_54 AC 102 ms
24,960 KB
testcase_55 AC 29 ms
9,728 KB
testcase_56 AC 50 ms
14,140 KB
testcase_57 AC 89 ms
23,288 KB
testcase_58 AC 62 ms
16,844 KB
testcase_59 AC 79 ms
20,048 KB
testcase_60 AC 118 ms
26,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
ll mod=1e9+7;

vector<ll> fact,invfact,inv;

void init(ll N){
    fact.resize(N+5);
    inv.resize(N+5);
    invfact.resize(N+5);
    fact[0]=1;fact[1]=1;
    invfact[0]=1;invfact[1]=1;
    inv[0]=1;inv[1]=1;
    for(int i=2;i<N+3;i++){
        fact[i]=fact[i-1]*i%mod;
        inv[i]=mod-inv[mod%i]*(mod/i)%mod;
        invfact[i] = invfact[i-1]*inv[i]%mod;
    }
}

ll nCk(ll n,ll x){
    return fact[n]*invfact[n-x]%mod*invfact[x]%mod;
}

ll powmod(ll x,ll n,ll m){
    ll res=1;
    while(n>0){
        if(n&1) res*=x;
        x*=x;
        res%=m;
        x%=m;
        n>>=1;
    }
    return res;
}


int main(){
    ll N,K,M;
    cin>>N>>K>>M;
    init(N);
    ll ans=0;
    for(int i=1;i<=min(K,N);i++){
        if(K%i==0){
            ans+=nCk(N-1,i-1)*fact[i-1]%mod*powmod(N,N-i,mod);
        }
        ans%=mod;
    }
    if(M==1) cout<<ans<<endl;
    else{
        cout<<(powmod(N,N,mod)-ans+mod)*inv[N-1]%mod<<endl;
    }
}
0