結果

問題 No.391 CODING WAR
ユーザー ShibuyapShibuyap
提出日時 2021-02-22 19:20:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,416 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 202,400 KB
実行使用メモリ 15,608 KB
最終ジャッジ日時 2023-10-21 14:00:41
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge9 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
15,608 KB
testcase_01 AC 16 ms
15,608 KB
testcase_02 AC 17 ms
15,608 KB
testcase_03 AC 17 ms
15,608 KB
testcase_04 AC 17 ms
15,608 KB
testcase_05 AC 18 ms
15,608 KB
testcase_06 AC 17 ms
15,608 KB
testcase_07 AC 18 ms
15,608 KB
testcase_08 AC 18 ms
15,608 KB
testcase_09 AC 40 ms
15,608 KB
testcase_10 AC 40 ms
15,608 KB
testcase_11 AC 27 ms
15,608 KB
testcase_12 AC 17 ms
15,608 KB
testcase_13 AC 36 ms
15,608 KB
testcase_14 AC 34 ms
15,608 KB
testcase_15 AC 35 ms
15,608 KB
testcase_16 AC 27 ms
15,608 KB
testcase_17 AC 30 ms
15,608 KB
testcase_18 AC 26 ms
15,608 KB
testcase_19 AC 25 ms
15,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_N 200005

const ll MOD = 1000000007;

ll mod_pow(ll x, ll n, ll mod){ // x ^ n % mod
    ll res = 1;
    while(n > 0){
        if (n & 1) res = res * x % mod;
        x = x * x % mod;
        n >>= 1;
    }
    return res;
}

const int MAX = 510000;
long long fac[MAX], finv[MAX], inv[MAX];
// テーブルを作る前処理
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}
// 二項係数計算
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

long long FINV(int n){
    if (n < 0) return 0;
    return finv[n];
}

int main() {
    COMinit();
    ll n, m;
    cin >> n >> m;
    ll ans = 0;

    srep(i,1,m+1){
        ll tmp = COM(m,i) * mod_pow(i,n,MOD) % MOD;
        if((m-i)%2 == 0) ans += tmp;
        else ans += MOD - tmp;
        ans %= MOD;
    }

    cout << ans << endl;
    return 0;
}
 
 
0