結果

問題 No.1035 Color Box
ユーザー kk
提出日時 2020-09-07 00:22:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 200,552 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 21:40:49
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
6,812 KB
testcase_01 AC 20 ms
6,940 KB
testcase_02 AC 19 ms
6,940 KB
testcase_03 AC 20 ms
6,940 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 20 ms
6,944 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 22 ms
6,944 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 19 ms
6,944 KB
testcase_12 AC 20 ms
6,944 KB
testcase_13 AC 24 ms
6,940 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 20 ms
6,944 KB
testcase_18 AC 19 ms
6,944 KB
testcase_19 AC 26 ms
6,944 KB
testcase_20 AC 19 ms
6,940 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 19 ms
6,944 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 20 ms
6,944 KB
testcase_26 AC 19 ms
6,944 KB
testcase_27 AC 20 ms
6,940 KB
testcase_28 AC 20 ms
6,940 KB
testcase_29 AC 19 ms
6,940 KB
testcase_30 AC 19 ms
6,944 KB
testcase_31 AC 19 ms
6,940 KB
testcase_32 AC 20 ms
6,944 KB
testcase_33 AC 19 ms
6,940 KB
testcase_34 AC 20 ms
6,944 KB
testcase_35 AC 19 ms
6,944 KB
testcase_36 AC 20 ms
6,944 KB
testcase_37 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
const long long MOD = 1e9 + 7;

long long f[100000+1];
long long g[100000+1];

long long modpow(long long x, long long p, long long mod) {
  long long ret = 1;
  while (p) {
    if (p & 1)
      ret = ret * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return ret;
}

long long comb(int n, int r) {
  return n >= r ? f[n] * g[r] % MOD * g[n-r] % MOD : 0;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n, m;
  cin >> n >> m;

  f[0] = g[0] = 1;
  for (int i = 1; i <= 100000; i++) {
    f[i] = i * f[i-1] % MOD;
    g[i] = modpow(f[i], MOD-2, MOD);
  }

  long long ret = 0;
  int sign = 1;
  for (int i = 0; i < m; i++) {
    ret += sign * comb(m, i) * modpow(m-i, n, MOD);
    ret %= MOD;
    sign *= -1;
  }
  
  if (ret < 0)
    ret += MOD;
  cout << ret << endl;
  return 0;
}
0