結果

問題 No.1164 GCD Products hard
ユーザー kyo1kyo1
提出日時 2021-06-22 15:11:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,814 ms / 2,500 ms
コード長 941 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 201,716 KB
実行使用メモリ 42,272 KB
最終ジャッジ日時 2024-06-23 12:18:14
合計ジャッジ時間 26,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,086 ms
29,876 KB
testcase_01 AC 1,227 ms
33,096 KB
testcase_02 AC 745 ms
25,200 KB
testcase_03 AC 217 ms
10,744 KB
testcase_04 AC 154 ms
11,136 KB
testcase_05 AC 1,088 ms
29,568 KB
testcase_06 AC 1,243 ms
35,072 KB
testcase_07 AC 1,311 ms
36,864 KB
testcase_08 AC 1,290 ms
36,736 KB
testcase_09 AC 825 ms
26,240 KB
testcase_10 AC 196 ms
9,856 KB
testcase_11 AC 811 ms
27,904 KB
testcase_12 AC 1,396 ms
34,916 KB
testcase_13 AC 654 ms
22,272 KB
testcase_14 AC 560 ms
25,984 KB
testcase_15 AC 1,313 ms
37,504 KB
testcase_16 AC 709 ms
28,032 KB
testcase_17 AC 1,054 ms
28,800 KB
testcase_18 AC 921 ms
26,740 KB
testcase_19 AC 157 ms
11,648 KB
testcase_20 AC 397 ms
15,744 KB
testcase_21 AC 1,527 ms
37,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1,121 ms
42,240 KB
testcase_24 AC 1,814 ms
42,272 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;
  int u = 0, v = 0;
  vector<int> X(B + 1, 0);
  for (int g = B; g > 0; g--) {
    int a = (A - 1) / g, b = B / g;
    if (u != b - a) {
      X[g] = pow(b - a, N, mod - 1);
      u = b - a;
      v = X[g];
    } else {
      X[g] = v;
    }
    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