結果

問題 No.1164 GCD Products hard
ユーザー Sooh31Sooh31
提出日時 2020-08-19 11:09:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,500 ms
コード長 882 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 195,436 KB
実行使用メモリ 13,416 KB
最終ジャッジ日時 2024-04-20 08:15:18
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
10,488 KB
testcase_01 AC 163 ms
11,292 KB
testcase_02 AC 116 ms
9,880 KB
testcase_03 AC 38 ms
6,944 KB
testcase_04 AC 38 ms
6,940 KB
testcase_05 AC 136 ms
11,072 KB
testcase_06 AC 178 ms
12,124 KB
testcase_07 AC 175 ms
12,076 KB
testcase_08 AC 162 ms
11,876 KB
testcase_09 AC 111 ms
10,344 KB
testcase_10 AC 38 ms
6,944 KB
testcase_11 AC 123 ms
10,124 KB
testcase_12 AC 170 ms
11,380 KB
testcase_13 AC 97 ms
8,504 KB
testcase_14 AC 96 ms
10,856 KB
testcase_15 AC 173 ms
12,164 KB
testcase_16 AC 112 ms
10,340 KB
testcase_17 AC 135 ms
10,972 KB
testcase_18 AC 116 ms
9,688 KB
testcase_19 AC 43 ms
6,944 KB
testcase_20 AC 65 ms
8,376 KB
testcase_21 AC 187 ms
12,152 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 175 ms
13,192 KB
testcase_24 AC 214 ms
13,416 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 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