結果

問題 No.1164 GCD Products hard
ユーザー kyo1kyo1
提出日時 2021-07-22 22:31:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,905 ms / 2,500 ms
コード長 881 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 201,996 KB
実行使用メモリ 42,256 KB
最終ジャッジ日時 2024-07-17 18:42:32
合計ジャッジ時間 26,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,151 ms
30,016 KB
testcase_01 AC 1,323 ms
32,888 KB
testcase_02 AC 824 ms
25,296 KB
testcase_03 AC 212 ms
10,776 KB
testcase_04 AC 140 ms
11,208 KB
testcase_05 AC 1,101 ms
29,656 KB
testcase_06 AC 1,260 ms
35,060 KB
testcase_07 AC 1,351 ms
36,904 KB
testcase_08 AC 1,280 ms
36,664 KB
testcase_09 AC 831 ms
26,184 KB
testcase_10 AC 195 ms
9,972 KB
testcase_11 AC 878 ms
27,896 KB
testcase_12 AC 1,394 ms
35,016 KB
testcase_13 AC 662 ms
22,096 KB
testcase_14 AC 552 ms
25,944 KB
testcase_15 AC 1,349 ms
37,580 KB
testcase_16 AC 750 ms
28,240 KB
testcase_17 AC 1,100 ms
28,752 KB
testcase_18 AC 1,000 ms
26,772 KB
testcase_19 AC 156 ms
11,776 KB
testcase_20 AC 401 ms
15,824 KB
testcase_21 AC 1,578 ms
37,388 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1,151 ms
42,236 KB
testcase_24 AC 1,905 ms
42,256 KB
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,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const 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> P(B + 1, 0);
  for (int g = B; g > 0; g--) {
    int x = B / g - (A - 1) / g;
    P[g] = x == u ? v : pow(x, N, MOD - 1);
    u = x, v = P[g];
    for (int i = 2 * g; i < B + 1; i += g) {
      P[g] -= P[i];
      if (P[g] < 0) P[g] += MOD - 1;
    }
    res = static_cast<int64_t>(res) * pow(g, P[g], MOD) % MOD;
  }
  cout << res << '\n';
  return 0;
}
0