比赛 20160303 评测结果 AAAAAAAAAA
题目名称 大整数取模 最终得分 100
用户昵称 农场主 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-03-04 09:08:15
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
typedef long long LL;
string s;
LL n;
int main(){
	freopen("bigint.in","r",stdin);
    	freopen("bigint.out","w",stdout);
    	cin>>s;
    	cin>>n;
    	LL p=0;
    	for (int i=0;i<s.size();i++){
    		p=p*10+int(s[i])-int('0');
    		p%=n;
    	}
    	cout<<p;
    	return 0;
}