結果

問題 No.1164 GCD Products hard
ユーザー Sooh31Sooh31
提出日時 2020-08-19 11:09:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,500 ms
コード長 882 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 201,028 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-10-12 03:36:22
合計ジャッジ時間 6,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
10,112 KB
testcase_01 AC 198 ms
10,880 KB
testcase_02 AC 137 ms
8,960 KB
testcase_03 AC 46 ms
5,376 KB
testcase_04 AC 45 ms
5,632 KB
testcase_05 AC 168 ms
10,112 KB
testcase_06 AC 212 ms
11,392 KB
testcase_07 AC 206 ms
11,992 KB
testcase_08 AC 193 ms
11,868 KB
testcase_09 AC 132 ms
9,216 KB
testcase_10 AC 45 ms
5,248 KB
testcase_11 AC 149 ms
9,600 KB
testcase_12 AC 205 ms
11,520 KB
testcase_13 AC 119 ms
8,064 KB
testcase_14 AC 112 ms
9,216 KB
testcase_15 AC 210 ms
12,032 KB
testcase_16 AC 138 ms
9,728 KB
testcase_17 AC 167 ms
9,856 KB
testcase_18 AC 143 ms
9,344 KB
testcase_19 AC 50 ms
5,760 KB
testcase_20 AC 79 ms
6,656 KB
testcase_21 AC 225 ms
12,032 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 201 ms
13,184 KB
testcase_24 AC 263 ms
13,184 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 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