国产探花免费观看_亚洲丰满少妇自慰呻吟_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

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 潮州市| 巴彦淖尔市| 公安县| 全椒县| 陆川县| 麻栗坡县| 云和县| 东山县| 台中市| 旅游| 安徽省| 石门县| 娱乐| 灯塔市| 大余县| 富锦市| 铜鼓县| 延寿县| 天镇县| 和政县| 惠水县| 宜丰县| 思茅市| 临高县| 寿阳县| 南京市| 合川市| 余干县| 阳谷县| 师宗县| 建湖县| 名山县| 房山区| 晋中市| 阿克陶县| 神池县| 东海县| 丰城市| 老河口市| 白山市| 益阳市|