记录编号 | 191591 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO Feb08] 奶牛式乘法 | 最终得分 | 100 | ||
用户昵称 | liu_runda | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.006 s | ||
提交时间 | 2015-10-08 11:49:12 | 内存使用 | 0.29 MiB | ||
#include<cstdio> using namespace std; char a[20],b[20]; int main(){ freopen("cowmult.in","r",stdin); freopen("cowmult.out","w",stdout); scanf("%s %s",a,b); int ans = 0; for(int i = 0;a[i]!='\0';++i) for(int j = 0;b[j]!='\0';++j){ ans+=(a[i]-'0')*(b[j]-'0'); } printf("%d",ans); fclose(stdin);fclose(stdout); return 0; }