結果

問題 No.391 CODING WAR
ユーザー 36kt_36kt_
提出日時 2016-07-14 11:36:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,909 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 164,428 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-22 17:53:13
合計ジャッジ時間 5,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* template.cpp [[[ */
#include <bits/stdc++.h>
using namespace std;
#define get_macro(a, b, c, d, name, ...) name
#define rep(...) get_macro(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__)
#define rrep(...) get_macro(__VA_ARGS__, rrep4, rrep3, rrep2, rrep1)(__VA_ARGS__)
#define rep1(n) rep2(i_, n)
#define rep2(i, n) rep3(i, 0, n)
#define rep3(i, a, b) rep4(i, a, b, 1)
#define rep4(i, a, b, s) for (ll i = (a); i < (ll)(b); i += (ll)s)
#define rrep1(n) rrep2(i_, n)
#define rrep2(i, n) rrep3(i, 0, n)
#define rrep3(i, a, b) rrep4(i, a, b, 1)
#define rrep4(i, a, b, s) for (ll i = (ll)(b) - 1; i >= (ll)(a); i -= (ll)s)
#define each(x, c) for (auto &&x : c)
#define fs first
#define sc second
#define all(c) begin(c), end(c)
using ui = unsigned;
using ll = long long;
using ul = unsigned long long;
using ld = long double;
const int inf = 1e9 + 10;
const ll inf_ll = 1e18 + 10;
const ll mod = 1e9 + 7;
const ll mod9 = 1e9 + 9;
const int dx[]{-1, 0, 1, 0, -1, 1, 1, -1};
const int dy[]{0, -1, 0, 1, -1, -1, 1, 1};
template<class T, class U> void chmin(T &x, const U &y){ x = min<T>(x, y); }
template<class T, class U> void chmax(T &x, const U &y){ x = max<T>(x, y); }
struct prepare_ { prepare_(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(12); } } prepare__;
/* ]]] */

ll modpow(ll x, ll y, ll m = mod){
  ll s = 1;
  while (y){
    if (y & 1) s = s * x % m;
    x = x * x % m;
    y >>= 1;
  }
  return s;
}

ll modinv(ll x, ll m = mod){
  return modpow(x, m - 2, m);
}

ll modcomb(ll x, ll y, ll m = mod){
  if (y < 0 || x < y) return 0;
  ll s = 1;
  rep(i, y){
    s = s * (x - i) % m;
    s = s * modinv(i + 1) % m;
  }
  return s;
}

int main(){
  ll n, m;
  cin >> n >> m;
  if (n < m) cout << "0\n", exit(0);
  ll s = 0, sgn = 1;
  rrep(i, 1, m + 1){
    s = (s + modpow(i, n) * modcomb(m, i) * sgn % mod + mod) % mod;
    sgn *= -1;
  }
  cout << s << endl;
}
0