1017 A除以B (20 分)
本题要求计算 A/B,其中 A 是不超过 1000 位的正整数,B 是 1 位正整数。你需要输出商数 Q 和余数 R,使得 A=B×Q+R 成立。
输入在一行中依次给出 A 和 B,中间以 1 空格分隔。
在一行中依次输出 Q 和 R,中间以 1 空格分隔。
123456789050987654321 7
17636684150141093474 3
思路:模拟除法过程,相当于我们在草稿纸上验算那样 运算到某一位之后取余然后*10+下一位继续取余
不过要注意的是如果是0除以某个数时,要特判0 0,还有一个测试点是类似5 8 这种应该输出0 5,要特别注意~
// luogu-judger-enable-o2
#include<bits/stdc++.h>
#include<unordered_set>
#define rg register ll
#define inf 2147483647
#define min(a,b) (a<b?a:b)
#define max(a,b) (a>b?a:b)
#define ll long long
#define maxn 300005
#define lb(x) (x&(-x))
const double eps = 1e-6;
using namespace std;
inline ll read()
{
char ch = getchar(); ll s = 0, w = 1;
while (ch < 48 || ch>57) { if (ch == '-')w = -1; ch = getchar(); }
while (ch >= 48 && ch <= 57) { s = (s << 1) + (s << 3) + (ch ^ 48); ch = getchar(); }
return s * w;
}
inline void write(ll x)
{
if (x < 0)putchar('-'), x = -x;
if (x > 9)write(x / 10);
putchar(x % 10 + 48);
}
string k;
ll a[1005],b,c[1005];
int main()
{
cin>>k>>b;
for(rg i=0;k[i];i++)
{
a[i+1]=k[i]-48;
//cout<<a[i+1];
}
ll temp=0;
for(rg i=1;i<=k.size();i++)
{
temp=temp*10+a[i];
c[i]=temp/b;
temp=temp%b;
}
ll flag=0;
for(rg i=1;i<=k.size();i++)
{
if(c[i]==0&&flag==0)continue;
if(c[i]||(c[i]==0&&flag==1))
{
cout<<c[i];
flag=1;
}
}
if(flag==0)
{
if(k[0]==0)
cout<<0<<" 0"<<endl;
else
{
cout<<"0 "<<k[0]<<endl;
}
return 0;
}
cout<<" "<<temp<<endl;
return 0;
}