比赛 欢乐五一练练练 评测结果 AAAAAAAAAA
题目名称 大整数取模 最终得分 100
用户昵称 TARDIS 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2017-04-28 16:44:07
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<stack>
#include<queue>
#include<cstring>
#include<deque>
#define itn int
#define coder goodboy
using namespace std;
typedef long long LL;
char str[600];int num,ans,temp;
inline void in(){
	freopen("bigint.in","r",stdin);
	freopen("bigint.out","w",stdout);
	scanf("%s %d",str,&num);
}
inline void deal(){
	int len=strlen(str);
	for (itn i=0;i<len;i++){
		ans=((LL)ans*10+str[i]-'0')%num;
	}
	printf("%d",ans);
}
int Main(){
	in();
	deal();
	return 0;
}
int main(){;}
int xlm=Main();