记录编号 345654 评测结果 AAAAAAAAAA
题目名称 小L的取膜算式 最终得分 100
用户昵称 GravatarAntiLeaf 是否通过 通过
代码语言 C++ 运行时间 0.950 s
提交时间 2016-11-11 14:30:49 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
//#define NEGATE_NEEDED
	template<class T>inline void readint(T &__x){
		static int __c;
#ifdef NEGATE_NEEDED
		static bool __neg;
#endif
		__x=0;
#ifdef NEGATE_NEEDED
		__neg=false;
#endif
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
#ifdef NEGATE_NEEDED
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
#endif
		for(;__c>='0'&&__c<='9';__c=getchar())__x=(__x<<1)+(__x<<3)+(__c^48);
#ifdef NEGATE_NEEDED
		if(__neg)__x=-__x;
#endif
	}
	template<class T>inline void writeint(T __x){
		static int __a[25],__i,__j;
#ifdef NEGATE_NEEDED
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
#endif
		__i=0;
		do{
			__a[__i++]=__x%10^48;
			__x/=10;
		}while(__x);
#ifdef NEGATE_NEEDED
		if(__neg)putchar('-');
#endif
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
int T;
long long a,b,p;
int main(){
#define MINE
#ifdef MINE
	freopen("chenyao_momomo_expr.in","r",stdin);
	freopen("chenyao_momomo_expr.out","w",stdout);
#endif
	readint(T);
	while(T--){
		readint(a);
		readint(b);
		readint(p);
		a%=p;b%=p;
		writeint((a+b)%p);
		putchar('\n');
	}
#ifndef MINE
	printf("\n-------------------------DONE-------------------------\n");
	for(;;);
#endif
	return 0;
}
/*
根据费马小定理,答案是(a+b)%p。
*/