记录编号 233081 评测结果 AAAAAAAAAA
题目名称 大整数取模 最终得分 100
用户昵称 GravatarKZNS 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2016-03-04 09:04:49 内存使用 0.31 MiB
显示代码纯文本
//KZNS
#include <fstream>
#include <cstring>
using namespace std;
int main() {
	ifstream fin ("bigint.in");
	ofstream fout ("bigint.out");
	string s;
	fin >>s;
	long long m;
	fin >>m;
	long long n=0;
	for (int i=0; i<s.length(); i++) {
		n=n*10+s[i]-'0';
		n%=m;
	}
	fout <<n;
	return 0;
}
//UBWH