标签:
时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:5319
解决:3606
写个算法,对2个小于1000000000的输入,求结果。
特殊乘法举例:123 * 45 = 1*4 +1*5 +2*4 +2*5 +3*4+3*5
两个小于1000000000的数
输入可能有多组数据,对于每一组数据,输出Input中的两个数按照题目要求的方法进行运算后得到的结果。
123 45
54
按题目直接模拟就好。
//Asimple #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <vector> #include <cctype> #include <cstdlib> #include <stack> #include <cmath> #include <set> #include <map> #include <string> #include <queue> #include <limits.h> #define INF 0x7fffffff using namespace std; const int maxn = 55; typedef long long ll; ll sum = 0; char s1[maxn], s2[maxn]; int main(){ while( ~scanf("%s %s",s1, s2) ){ sum =0; for(int i=0; s1[i]!=‘\0‘; i++){ for(int j=0; s2[j]!=‘\0‘; j++){ sum += (s1[i]-‘0‘)*(s2[j]-‘0‘); } } printf("%ld\n",sum); } return 0; }
标签:
原文地址:http://www.cnblogs.com/Asimple/p/5965301.html