結果

問題 No.1164 GCD Products hard
ユーザー msm1993msm1993
提出日時 2020-09-11 16:19:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,500 ms
コード長 848 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 49,408 KB
実行使用メモリ 17,008 KB
最終ジャッジ日時 2024-06-07 19:03:33
合計ジャッジ時間 6,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
16,748 KB
testcase_01 AC 198 ms
16,876 KB
testcase_02 AC 161 ms
16,876 KB
testcase_03 AC 108 ms
16,752 KB
testcase_04 AC 105 ms
16,872 KB
testcase_05 AC 177 ms
16,872 KB
testcase_06 AC 194 ms
16,876 KB
testcase_07 AC 192 ms
16,876 KB
testcase_08 AC 181 ms
17,004 KB
testcase_09 AC 157 ms
16,748 KB
testcase_10 AC 108 ms
16,744 KB
testcase_11 AC 164 ms
16,876 KB
testcase_12 AC 196 ms
16,876 KB
testcase_13 AC 153 ms
16,880 KB
testcase_14 AC 138 ms
16,876 KB
testcase_15 AC 190 ms
16,880 KB
testcase_16 AC 147 ms
16,876 KB
testcase_17 AC 176 ms
16,824 KB
testcase_18 AC 162 ms
16,876 KB
testcase_19 AC 107 ms
16,752 KB
testcase_20 AC 125 ms
17,004 KB
testcase_21 AC 212 ms
16,880 KB
testcase_22 AC 78 ms
17,008 KB
testcase_23 AC 169 ms
16,880 KB
testcase_24 AC 224 ms
16,876 KB
testcase_25 AC 76 ms
16,876 KB
testcase_26 AC 78 ms
16,880 KB
testcase_27 AC 77 ms
16,748 KB
testcase_28 AC 78 ms
16,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
using namespace std;
#define PB push_back
typedef long long int ll;
constexpr int kMod = int(1E9 + 7), kN = int(1E7 + 10);

bool is_prime[kN];
vector<int> prime;

ll Pow(ll a, ll b, ll m) {
	ll ans = 1;
	while (b) {
		if (b & 1) ans = ans * a % m;
		a = a * a % m;
		b >>= 1;
	}
	return ans;
}

void pre() {
	for (int i = 2; i < kN; i++) is_prime[i] = true;
	for (int i = 2; i < kN; i++) {
		if (is_prime[i]) prime.PB(i);
		for (int j : prime) {
			if (i * j >= kN) break;
			is_prime[i * j] = false;
			if (i % j == 0) break;
		}
	}
	return ;
}

int main() {
	ll ans = 1, a, b, n, tmp;
	scanf("%lld%lld%lld", &a, &b, &n);
	pre();
	for (int i : prime) {
		tmp = i;
		while (tmp <= b) {
			ans = ans * Pow(i, Pow(b / tmp - (a - 1) / tmp, n, kMod - 1), kMod) % kMod;
			tmp *= i;
		}
	}
	printf("%lld\n", ans);
}
0