結果

問題 No.1164 GCD Products hard
ユーザー yuruhiyayuruhiya
提出日時 2020-08-12 12:46:29
言語 cLay
(20240714-1)
結果
AC  
実行時間 180 ms / 2,500 ms
コード長 297 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 175,388 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-07-05 13:52:26
合計ジャッジ時間 7,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
5,376 KB
testcase_01 AC 145 ms
5,504 KB
testcase_02 AC 105 ms
5,376 KB
testcase_03 AC 37 ms
5,376 KB
testcase_04 AC 35 ms
5,376 KB
testcase_05 AC 123 ms
5,376 KB
testcase_06 AC 142 ms
5,376 KB
testcase_07 AC 141 ms
5,760 KB
testcase_08 AC 129 ms
5,504 KB
testcase_09 AC 97 ms
5,376 KB
testcase_10 AC 37 ms
5,376 KB
testcase_11 AC 109 ms
5,376 KB
testcase_12 AC 150 ms
5,632 KB
testcase_13 AC 91 ms
5,376 KB
testcase_14 AC 75 ms
5,376 KB
testcase_15 AC 140 ms
5,760 KB
testcase_16 AC 90 ms
5,376 KB
testcase_17 AC 122 ms
5,376 KB
testcase_18 AC 106 ms
5,376 KB
testcase_19 AC 36 ms
5,376 KB
testcase_20 AC 61 ms
5,376 KB
testcase_21 AC 161 ms
5,760 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 120 ms
6,016 KB
testcase_24 AC 180 ms
6,144 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll a, b, n;
int prime[700000], s;
Mint ans = 1;
{
	rd(a, b, n);
	s = Prime(b+1, prime);
	rep(i, s) {
		ll p = prime[i];
		modint sum = 0;
		sum.setmod(MD - 1);
		for (ll i = p; i <= b; i *= p) {
			modint x = b / i - (a - 1) / i;
			sum += x.pw(n);
		}
		ans *= Mint(p).pw(sum.val);
	}
	wt(ans);
}
0