結果

問題 No.1164 GCD Products hard
ユーザー kyo1kyo1
提出日時 2021-06-22 15:03:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,038 ms / 2,500 ms
コード長 966 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 207,208 KB
実行使用メモリ 42,608 KB
最終ジャッジ日時 2024-06-23 12:10:49
合計ジャッジ時間 29,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,277 ms
30,208 KB
testcase_01 AC 1,468 ms
33,152 KB
testcase_02 AC 910 ms
25,472 KB
testcase_03 AC 255 ms
10,880 KB
testcase_04 AC 188 ms
11,344 KB
testcase_05 AC 1,222 ms
29,696 KB
testcase_06 AC 1,430 ms
35,200 KB
testcase_07 AC 1,438 ms
36,940 KB
testcase_08 AC 1,388 ms
36,928 KB
testcase_09 AC 986 ms
26,476 KB
testcase_10 AC 221 ms
9,984 KB
testcase_11 AC 983 ms
28,028 KB
testcase_12 AC 1,541 ms
35,072 KB
testcase_13 AC 768 ms
22,272 KB
testcase_14 AC 672 ms
25,984 KB
testcase_15 AC 1,514 ms
37,632 KB
testcase_16 AC 831 ms
28,232 KB
testcase_17 AC 1,191 ms
28,928 KB
testcase_18 AC 1,059 ms
26,880 KB
testcase_19 AC 190 ms
11,904 KB
testcase_20 AC 435 ms
15,744 KB
testcase_21 AC 1,752 ms
37,632 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1,338 ms
42,240 KB
testcase_24 AC 2,038 ms
42,608 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 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;
  int res = 1;
  unordered_map<int, int> mp;
  vector<int> X(B + 1, 0);
  for (int g = B; g > 0; g--) {
    int a = (A - 1) / g, b = B / g;
    if (mp.find(b - a) == mp.end()) {
      X[g] = pow(b - a, N, mod - 1);
      mp[b - a] = X[g];
    } else {
      X[g] = mp[b - a];
    }
    for (int i = 2 * g; i < B + 1; i += g) {
      X[g] -= X[i];
      if (X[g] < 0) X[g] += mod - 1;
    }
    res = INT64_C(1) * res * pow(g, X[g], mod) % mod;
  }
  cout << res << '\n';
  return 0;
}
0