比赛 |
普及水题赛(语言题赛) |
评测结果 |
AAAAAAAAAA |
题目名称 |
奶牛式乘法 |
最终得分 |
100 |
用户昵称 |
→震世逆空波→ |
运行时间 |
0.002 s |
代码语言 |
C++ |
内存使用 |
0.29 MiB |
提交时间 |
2014-10-16 19:15:18 |
显示代码纯文本
#include <cstdio>
using namespace std;
int sza[110],szb[110];
long long a,b,ans=0;
int main()
{
freopen("cowmult.in","r",stdin);
freopen("cowmult.out","w",stdout);
scanf("%lld%lld",&a,&b);
long long x=a,y=b,tx=1,ty=1;
while(x)
{
sza[tx]=x%10;
x=x/10;
tx++;
}
while(y)
{
szb[ty]=y%10;
y=y/10;
ty++;
}
for(int i=1;i<=tx;i++)
{
for(int j=1;j<=ty;j++)
{
ans+=sza[i]*szb[j];
}
}
printf("%lld\n",ans);
fclose(stdin);
fclose(stdout);
return 0;
}