国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1023. Have Fun with Numbers (20)-(大整數乘法)

2019-11-10 18:32:16
字體:
來源:轉載
供稿:網友

Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number consisting exactly the numbers from 1 to 9, only in a different permutation. Check to see the result if we double it again!

Now you are suppose to check if there are more numbers with this PRoperty. That is, double a given number with k digits, you are to tell if the resulting number consists of only a permutation of the digits in the original number.

Input Specification:

Each input file contains one test case. Each case contains one positive integer with no more than 20 digits.

Output Specification:

For each test case, first print in a line “Yes” if doubling the input number gives a number that consists of only a permutation of the digits in the original number, or “No” if not. Then in the next line, print the doubled number.

Sample Input: 1234567899 Sample Output: Yes 2469135798

#include<cstdio>#include<cstring>#include<algorithm>using namespace std;int main(){ int a[25],b[25]; char str[25],str2[25]; scanf("%s",str); int len=strlen(str); for(int i=0;i<len;i++){ a[i]=str[len-1-i]-'0'; } int i,carry=0; for(i=0;i<len;i++){ b[i]=(a[i]*2+carry)%10; carry=(a[i]*2+carry)/10; } if(carry){ b[i++]=carry; } int b_len=i; for(int i=0;i<b_len;i++){ str2[i]=b[b_len-1-i]+'0'; } str2[b_len]='/0';//切記不能忘記字符串結束字符 sort(str,str+len); sort(str2,str2+b_len);// printf("%s %s/n",str,str2); if(strcmp(str,str2)==0){ printf("Yes/n"); }else{ printf("No/n"); } for(int i=b_len-1;i>=0;i--){ printf("%d",b[i]); } printf("/n"); return 0; }
上一篇:HDU-2141

下一篇:正則表達式入門教程(四)

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 岳普湖县| 宜城市| 叙永县| 广丰县| 汶川县| 汝阳县| 桐城市| 手机| 唐山市| 满洲里市| 湘潭县| 庆阳市| 武强县| 晋中市| 贵南县| 枣庄市| 南京市| 南宫市| 盐亭县| 平武县| 霍州市| 民县| 高雄市| 蛟河市| 麻江县| 左云县| 通山县| 易门县| 蛟河市| 吉林省| 招远市| 灵璧县| 遂平县| 会理县| 县级市| 平乡县| 翁源县| 恭城| 普陀区| 徐州市| 霸州市|