比赛 |
EYOI与SBOI开学欢乐赛12th |
评测结果 |
AAAAAWWWWW |
题目名称 |
最大公因数取模 |
最终得分 |
50 |
用户昵称 |
op_组撒头屯 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2022-10-17 19:43:35 |
显示代码纯文本
#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*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;
}