记录编号 |
576966 |
评测结果 |
AAAAAAAAAA |
题目名称 |
最大公因数取模 |
最终得分 |
100 |
用户昵称 |
op_组撒头屯 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2022-10-19 18:56:29 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1000000007;
ll fst(ll x,ll y,ll m){
if (y==0)return 1;
if (y&1)return x%m*fst(x,y-1,m)%m;
ll p=fst(x,y/2,m);return p*p%m;
}
ll gcd(ll x,ll y){
if (y==0)return x;
return gcd(y,x%y);
}
int main(){
freopen ("gcmod.in","r",stdin);
freopen ("gcmod.out","w",stdout);
int T;scanf("%d",&T);
while(T--){
ll a,b,n;scanf("%lld%lld%lld",&a,&b,&n);
if(a==b){
printf("%lld\n",(fst(a,n,mod)+fst(b,n,mod))%mod);
continue;
}
if (a<b)swap(a,b);
printf("%lld\n",gcd(a-b,(fst(a,n,a-b)+fst(b,n,a-b))%(a-b))%mod);
}
return 0;
}