博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3673 Cow Multiplication
阅读量:6214 次
发布时间:2019-06-21

本文共 1133 字,大约阅读时间需要 3 分钟。

Cow Multiplication
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 13312   Accepted: 9307

Description

Bessie is tired of multiplying pairs of numbers the usual way, so she invented her own style of multiplication. In her style, A*B is equal to the sum of all possible pairwise products between the digits of A and B. For example, the product 123*45 is equal to 1*4 + 1*5 + 2*4 + 2*5 + 3*4 + 3*5 = 54. Given two integers A and B (1 ≤ A, B ≤ 1,000,000,000), determine A*B in Bessie's style of multiplication.

Input

* Line 1: Two space-separated integers: A and B.

Output

* Line 1: A single line that is the A*B in Bessie's style of multiplication.

Sample Input

123 45

Sample Output

54

Source

题目链接:
分析:算是处理字符串吧!用两个数组去做,用一个数去计算它们的和即可!
下面给出AC代码:
1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 int main() 7 { 8 char a[10005],b[10005]; 9 int c[10005];10 while(scanf("%s%s",&a,&b)!=EOF)11 {12 memset(c,0,sizeof(c));13 int s=0;14 int lena=strlen(a);15 int lenb=strlen(b);16 for(int i=0;i

 

转载地址:http://jgpja.baihongyu.com/

你可能感兴趣的文章
Android Studio 下使用JNI运行hello word程序
查看>>
windows查看端口占用
查看>>
java性能监控
查看>>
老李分享:java线程生命周期 2
查看>>
一个强大专业的响应式jQuery幻灯效果插件:Royal Slider
查看>>
Formal Languages and Compilers-LL(1),FIRST and FOLLOW
查看>>
ThinkPHP源码学习---is_ssl() 函数 判断是否SSL协议
查看>>
PyOdps在交互式环境下的使用,让探索ODPS数据更容易些
查看>>
聊聊netflix的EurekaHttpClient
查看>>
聊聊flink Table的select操作
查看>>
单臂路由
查看>>
作业 第一章
查看>>
第一次作业
查看>>
我的友情链接
查看>>
康盛系列产品工程师php
查看>>
Excel利用超链接打开指定文件夹
查看>>
Elasticsearch走上专案专有化 AWS:将另开辟开放版
查看>>
J盘无法访问RAW,里面的数据怎样找到
查看>>
硬盘的读写原理
查看>>
photoshop技术
查看>>