比赛 201712练习 评测结果 AAAAAAAAAA
题目名称 大整数取模 最终得分 100
用户昵称 WHZ0325 运行时间 0.003 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2017-12-27 20:55:57
显示代码纯文本
#include <cstdio>
#include <cstring>
typedef long long int ll;
int main() {
	freopen("bigint.in","r",stdin);
	freopen("bigint.out","w",stdout);
	char n[105];ll m;
	scanf("%s%lld",n,&m);
	int len=strlen(n);
	ll ans=0;
	for(int i=0;i<len;++i) {
		ans=(ans*10+n[i]-'0')%m;
	}
	printf("%lld\n",ans);
	fclose(stdin);
	fclose(stdout);
	return 0;
}