結果

問題 No.1164 GCD Products hard
ユーザー milanis48663220milanis48663220
提出日時 2020-08-17 01:15:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 655 ms / 2,500 ms
コード長 1,758 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 86,088 KB
実行使用メモリ 21,380 KB
最終ジャッジ日時 2024-10-11 10:47:57
合計ジャッジ時間 13,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
21,380 KB
testcase_01 AC 532 ms
21,256 KB
testcase_02 AC 423 ms
21,252 KB
testcase_03 AC 205 ms
21,192 KB
testcase_04 AC 212 ms
21,252 KB
testcase_05 AC 480 ms
21,252 KB
testcase_06 AC 562 ms
21,252 KB
testcase_07 AC 583 ms
21,248 KB
testcase_08 AC 580 ms
21,256 KB
testcase_09 AC 432 ms
21,128 KB
testcase_10 AC 193 ms
21,248 KB
testcase_11 AC 458 ms
21,256 KB
testcase_12 AC 554 ms
21,252 KB
testcase_13 AC 374 ms
21,252 KB
testcase_14 AC 426 ms
21,252 KB
testcase_15 AC 596 ms
21,120 KB
testcase_16 AC 459 ms
21,376 KB
testcase_17 AC 468 ms
21,252 KB
testcase_18 AC 439 ms
21,256 KB
testcase_19 AC 221 ms
21,248 KB
testcase_20 AC 279 ms
21,248 KB
testcase_21 AC 593 ms
21,380 KB
testcase_22 AC 81 ms
21,252 KB
testcase_23 AC 652 ms
21,248 KB
testcase_24 AC 655 ms
21,248 KB
testcase_25 AC 81 ms
21,252 KB
testcase_26 AC 81 ms
21,252 KB
testcase_27 AC 80 ms
21,380 KB
testcase_28 AC 80 ms
21,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;
const ll MOD = 1000000007;

template <typename T>
T pow(T a, ll n) {
	T ans = 1;
	T tmp = a;
	for (int i = 0; i <= 60; i++) {
		ll m = (ll)1 << i;
		if (m & n) {
		ans *= tmp;
		ans %= MOD;
		}
		tmp *= tmp;
		tmp %= MOD;
	}
	return ans;
}

template <typename T>
T pow_(T a, ll n) {
	T ans = 1;
	T tmp = a;
	for (int i = 0; i <= 60; i++) {
		ll m = (ll)1 << i;
		if (m & n) {
		ans *= tmp;
		ans %= (MOD-1);
		}
		tmp *= tmp;
		tmp %= (MOD-1);
	}
	return ans;
}


bool is_prime[10000001];
vector<ll> ps;

void init(){
    for(int i = 2; i <= 10000000; i++){
        is_prime[i] = true;
    }
    for(int i = 2; i*i <= 10000000; i++){
        if(is_prime[i]){
            for(int j = 2; i*j <= 10000000; j++){
                is_prime[i*j] = false;
            }
        }
    }
    for(int i = 2; i <= 10000000; i++){
        if(is_prime[i]) ps.push_back(i);
    }
}

ll A, B, N;

// [A, B]のnで割り切れる個数
ll count(ll n){
    return B/n-(A-1)/n;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    init();
    cin >> A >> B >> N;
    ll ans = 1;
    for(ll n : ps){
        ll tmp = n;
        while(tmp <= B){
            ll c = pow_<ll>(count(tmp), N)-pow_<ll>(count(tmp*n), N);
            // ll c = pow<ll>(count(tmp), N)-pow<ll>(count(tmp*n), N);
            // if(c > 0) cout << n << ' ' << count(tmp) << ' ' << count(tmp*n) << ' ' << c << endl;
            c = (c%(MOD-1)+(MOD-1))%(MOD-1);
            ans *= pow<ll>(tmp, c);
            ans %= MOD;
            tmp *= n;
        }
    }
    cout << ans << endl;
}
0