結果

問題 No.1164 GCD Products hard
ユーザー rlangevinrlangevin
提出日時 2023-09-10 17:24:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,389 bytes
コンパイル時間 5,597 ms
コンパイル使用メモリ 308,604 KB
実行使用メモリ 124,840 KB
最終ジャッジ日時 2024-06-28 08:34:06
合計ジャッジ時間 51,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,974 ms
85,848 KB
testcase_01 AC 2,281 ms
94,884 KB
testcase_02 AC 1,586 ms
71,728 KB
testcase_03 AC 498 ms
27,260 KB
testcase_04 AC 473 ms
28,508 KB
testcase_05 AC 1,958 ms
84,828 KB
testcase_06 AC 2,310 ms
103,268 KB
testcase_07 AC 2,378 ms
108,536 KB
testcase_08 AC 2,333 ms
108,160 KB
testcase_09 AC 1,617 ms
74,916 KB
testcase_10 AC 461 ms
24,192 KB
testcase_11 AC 1,740 ms
79,420 KB
testcase_12 AC 2,413 ms
102,600 KB
testcase_13 AC 1,347 ms
62,588 KB
testcase_14 AC 1,383 ms
74,100 KB
testcase_15 AC 2,413 ms
110,516 KB
testcase_16 AC 1,606 ms
80,352 KB
testcase_17 AC 1,911 ms
82,508 KB
testcase_18 AC 1,744 ms
75,892 KB
testcase_19 AC 508 ms
30,164 KB
testcase_20 AC 868 ms
42,104 KB
testcase_21 TLE -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2,374 ms
124,692 KB
testcase_24 TLE -
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>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<int, int>;
using mint = modint1000000007;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

vector<int> Sieve(int n){
    vector<int> lst(n + 1, 1);
    int i = 2;
    while ((ll)i * i <= n){
        if (lst[i]){
            for (int j = 2 * i; j <= n; j += i){
                lst[j] = 0;
            }
        }
        i++;
    }
    vector<int> p;
    for (int i = 2; i <= n; i++){
        if (lst[i]){
            p.push_back(i);
        }
    }
    
    return p;
}

ll modpow(ll v, ll N, int mod){
    ll val = 1;
    ll now = v;
    rep(i, 30){
        if ((N >> i) & 1){
            val *= now;
            val %= mod;
        }
        now = now * now;
        now %= mod;
    }
    return val;
}

int main()
{
    int A, B, N;
    cin >> A >> B >> N;
    int mod = 1000000007;
    vector<ll> dp(B + 1);
    for (int i = 1; i <= B; i++){
        ll v = B/i - (A - 1)/i;
        dp[i] = modpow(v, N, mod - 1);
    }

    vector<int> lst = Sieve(B + 1);
    for (int p : lst){
        for (int j = p; j <= B; j += p){
            dp[j/p] -= dp[j];
            dp[j/p] = (mod - 1 + dp[j/p]) % (mod - 1); 
        }
    }

    mint ans = 1;
    for (int i = 1; i <= B; i++){
        ans *= mint(i).pow(dp[i]);
    }
    cout << ans.val() << endl;
}
0