結果

問題 No.1259 スイッチ
ユーザー kk
提出日時 2020-10-22 21:10:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 203,128 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-21 09:34:34
合計ジャッジ時間 10,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 114 ms
12,624 KB
testcase_11 AC 175 ms
17,792 KB
testcase_12 AC 108 ms
12,080 KB
testcase_13 AC 66 ms
8,448 KB
testcase_14 AC 92 ms
10,796 KB
testcase_15 AC 64 ms
8,308 KB
testcase_16 AC 146 ms
15,136 KB
testcase_17 AC 90 ms
10,472 KB
testcase_18 AC 165 ms
16,768 KB
testcase_19 AC 165 ms
16,876 KB
testcase_20 AC 117 ms
12,716 KB
testcase_21 AC 181 ms
18,048 KB
testcase_22 AC 57 ms
7,552 KB
testcase_23 AC 160 ms
16,508 KB
testcase_24 AC 124 ms
13,284 KB
testcase_25 AC 120 ms
12,948 KB
testcase_26 AC 181 ms
18,432 KB
testcase_27 AC 149 ms
15,596 KB
testcase_28 AC 121 ms
13,056 KB
testcase_29 AC 149 ms
15,532 KB
testcase_30 AC 94 ms
10,780 KB
testcase_31 AC 135 ms
14,208 KB
testcase_32 AC 60 ms
7,936 KB
testcase_33 AC 183 ms
18,472 KB
testcase_34 AC 101 ms
11,392 KB
testcase_35 AC 144 ms
14,836 KB
testcase_36 AC 131 ms
13,916 KB
testcase_37 AC 122 ms
13,312 KB
testcase_38 AC 113 ms
12,416 KB
testcase_39 AC 175 ms
17,664 KB
testcase_40 AC 177 ms
17,896 KB
testcase_41 AC 147 ms
15,360 KB
testcase_42 AC 180 ms
18,060 KB
testcase_43 AC 108 ms
11,968 KB
testcase_44 AC 175 ms
17,340 KB
testcase_45 AC 187 ms
18,816 KB
testcase_46 AC 104 ms
11,648 KB
testcase_47 AC 186 ms
18,596 KB
testcase_48 AC 90 ms
10,496 KB
testcase_49 AC 180 ms
18,108 KB
testcase_50 AC 103 ms
11,568 KB
testcase_51 AC 57 ms
7,780 KB
testcase_52 AC 176 ms
17,792 KB
testcase_53 AC 79 ms
9,600 KB
testcase_54 AC 176 ms
17,664 KB
testcase_55 AC 55 ms
7,552 KB
testcase_56 AC 89 ms
10,492 KB
testcase_57 AC 161 ms
16,640 KB
testcase_58 AC 112 ms
12,304 KB
testcase_59 AC 136 ms
14,464 KB
testcase_60 AC 188 ms
18,748 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 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 solve(int n, int m, long long k) {
  vector<long long> f(n+1), g(n+1);
  f[0] = g[0] = 1;
  for (int i = 1; i <= n; i++) {
    f[i] = f[i-1] * i % MOD;
    g[i] = modpow(f[i], MOD-2, MOD);
  }
  
  long long x = 0;
  for (int i = 1; i <= n; i++) {
    if (k % i) continue;
    long long tmp = f[n-1] * g[n-i] % MOD * modpow(n, n-i, MOD) % MOD;
    x += tmp;
    x %= MOD;
  }

  if (m > 1)
    x = (modpow(n, n, MOD) - x + MOD) % MOD * modpow(n-1, MOD-2, MOD) % MOD;

  return x;
}

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

  long long n, k, m;
  cin >> n >> k >> m;
  cout << solve(n, m, k) << endl;
  
  return 0;
}
0