結果

問題 No.1164 GCD Products hard
ユーザー furafura
提出日時 2020-08-14 03:11:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 560 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 199,916 KB
実行使用メモリ 47,616 KB
最終ジャッジ日時 2024-10-10 00:02:13
合計ジャッジ時間 52,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,060 ms
35,584 KB
testcase_01 TLE -
testcase_02 AC 1,837 ms
25,856 KB
testcase_03 AC 459 ms
11,264 KB
testcase_04 AC 476 ms
11,648 KB
testcase_05 AC 2,246 ms
30,080 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,769 ms
26,752 KB
testcase_10 AC 457 ms
10,496 KB
testcase_11 AC 2,003 ms
28,288 KB
testcase_12 TLE -
testcase_13 AC 1,452 ms
22,656 KB
testcase_14 AC 1,418 ms
26,496 KB
testcase_15 TLE -
testcase_16 AC 1,748 ms
28,544 KB
testcase_17 AC 2,168 ms
29,312 KB
testcase_18 AC 1,882 ms
27,264 KB
testcase_19 AC 508 ms
12,288 KB
testcase_20 AC 905 ms
16,128 KB
testcase_21 TLE -
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

const int MOD=1e9+7;

lint modpow(lint a,lint k,int m){
	lint r=1;
	for(lint x=a%m;k>0;k>>=1,x=x*x%m) if(k&1) r=r*x%m;
	return r;
}

int main(){
	int a,b,n; scanf("%d%d%d",&a,&b,&n);

	static int f[10000001];
	for(int g=b;g>=2;g--){
		f[g]=modpow(b/g-(a-1)/g,n,MOD-1);
		for(int h=2*g;h<=b;h+=g){
			f[g]-=f[h];
			if(f[g]<0) f[g]+=MOD-1;
		}
	}

	int ans=1;
	for(int g=2;g<=b;g++) ans=ans*modpow(g,f[g],MOD)%MOD;
	printf("%d\n",ans);

	return 0;
}
0