记录编号 |
345973 |
评测结果 |
MMMMMMMMMM |
题目名称 |
小L的取膜算式 |
最终得分 |
0 |
用户昵称 |
Hzoi_Go灬Fire |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2016-11-11 20:20:22 |
内存使用 |
3.00 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<cmath>
using namespace std;
#define LL unsigned long long
#define Begin freopen("chenyao_momomo_expr.in","r",stdin);freopen("chenyao_momomo_expr.out","w",stdout);
#define End fclose(stdin);fclose(stdout);
const int maxn=1010;
LL mod;
inline LL Read(){
LL x,f=1;char ch;
while(ch=getchar(),ch<'0' || ch>'9');
x=ch-48;
while(ch=getchar(),ch>='0' && ch<='9')x=x*10+ch-48;
return x;
}
void Init();
int main(){
Begin;
int T=0;scanf("%d",&T);
while(T--)Init();
getchar();getchar();
End;
return 0;
}
void Init(){
LL A,B;
A=Read();B=Read();mod=Read();
LL C=(A+B)%mod;
printf("%llu\n",C);
}