记录编号 |
451799 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Feb08] 奶牛式乘法 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2017-09-18 13:09:43 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
int ans;
char ta[11],tb[11];
int main()
{
freopen("cowmult.in","r",stdin);
freopen("cowmult.out","w",stdout);
scanf("%s%s",ta,tb);
for(int i=0;i<strlen(ta);i++)
{
for(int j=0;j<strlen(tb);j++)
{
register int a=ta[i]-'0',b=tb[j]-'0';
ans+=a*b;
}
}
printf("%d",ans);
return 0;
}