結果

問題 No.1158 GCD Products easy
ユーザー Sooh31Sooh31
提出日時 2020-08-19 11:10:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 194,756 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 08:15:21
合計ジャッジ時間 2,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const ll mod = 1000000007;
const int INF = 1001001001;

bool is_prime[10000007];

ll modpow(ll a, ll p, ll m){
    ll ret = 1;
    while(p){
        if(p & 1) ret = ret * a % m;
        a = a * a % m;
        p >>= 1;
    }
    return ret;
}

int main(){
    ll a, b, n, ans = 1;
    cin >> a >> b >> n;
    for(int i = 2; i <= b; i++){
        is_prime[i] = true;
    }
    for(int i = 2; i <= b; i++){
        if(!is_prime[i]) continue;
        for(int j = 2; j*i <= b; j++){
            is_prime[i*j] = false;
        }
    }
    for(int i = 2; i <= b; i++){
        if(!is_prime[i]) continue;
        ll tmp = i;
        while(tmp <= b){
            ll pw = modpow(b/tmp - (a-1)/tmp, n, mod-1);
            ans = ans * modpow(i, pw, mod) % mod;
            tmp *= i;
        }
    }
    cout << ans << endl;
}
0