传送门:http://ybt.ssoier.cn:8088/problem_show.php?pid=1175
1175:除以13
时间限制: 1000 ms 内存限制: 65536 KB提交数: 3377 通过数: 2109【题目描述】
输入一个大于0的大整数N,长度不超过100位,要求输出其除以13得到的商和余数。
【输入】
一个大于0的大整数,长度不超过100位。
【输出】
两行,分别为整数除法得到的商和余数。
【输入样例】
2132104848488485
【输出样例】
1640080652683450 高精除低精
1 #include2 #include 3 #define N 410 4 using namespace std; 5 string a; 6 int as[N],yu,lena,ans[N],tot=0; 7 int main(){ 8 cin>>a; 9 lena=a.size();10 for(int i=0;i