結果

問題 No.1164 GCD Products hard
ユーザー kyo1kyo1
提出日時 2021-06-22 14:53:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 869 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 202,780 KB
実行使用メモリ 42,440 KB
最終ジャッジ日時 2024-06-23 11:57:34
合計ジャッジ時間 47,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,902 ms
29,996 KB
testcase_01 AC 2,446 ms
32,948 KB
testcase_02 AC 1,644 ms
25,268 KB
testcase_03 AC 429 ms
10,760 KB
testcase_04 AC 419 ms
11,204 KB
testcase_05 AC 2,007 ms
29,644 KB
testcase_06 AC 2,456 ms
34,968 KB
testcase_07 AC 2,448 ms
36,876 KB
testcase_08 AC 2,306 ms
36,776 KB
testcase_09 AC 1,524 ms
26,328 KB
testcase_10 AC 443 ms
10,036 KB
testcase_11 AC 1,730 ms
27,864 KB
testcase_12 TLE -
testcase_13 AC 1,301 ms
22,228 KB
testcase_14 AC 1,192 ms
25,948 KB
testcase_15 TLE -
testcase_16 AC 1,515 ms
28,176 KB
testcase_17 AC 1,959 ms
28,864 KB
testcase_18 AC 1,677 ms
26,688 KB
testcase_19 AC 455 ms
11,824 KB
testcase_20 AC 803 ms
15,636 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2,480 ms
42,312 KB
testcase_24 TLE -
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

constexpr int mod = 1000000007;

template <typename T>
int pow(int x, T n, int mod = std::numeric_limits<int>::max()) {
  int res = 1;
  while (n > 0) {
    if (n & 1) res = static_cast<int64_t>(res) * static_cast<int64_t>(x) % mod;
    x = static_cast<int64_t>(x) * static_cast<int64_t>(x) % mod;
    n >>= 1;
  }
  return res;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int A, B, N;
  cin >> A >> B >> N;
  vector<int> X(B + 1, 0);
  for (int g = B; g > 0; g--) {
    int a = (A - 1) / g, b = B / g;
    X[g] = pow(b - a, N, mod - 1);
    for (int i = 2 * g; i < B + 1; i += g) {
      X[g] -= X[i];
      if (X[g] < 0) X[g] += mod - 1;
    }
  }
  int res = 1;
  for (int i = 1; i < B + 1; i++) {
    res = INT64_C(1) * res * pow(i, X[i], mod) % mod;
  }
  cout << res << '\n';
  return 0;
}
0