Time Limit : 1000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 32 Accepted Submission(s) : 22
Font: Times New Roman | Verdana | Georgia
Font Size: ← →
Problem Description
如果一个正整数m表示成二进制,它的位数为n(不包含前导0),寒月称它为一个n二进制数。所有的n二进制数中,1的总个数被称为n对应的月之数。
例如,3二进制数总共有4个,分别是4(100)、5(101)、6(110)、7(111),他们中1的个数一共是1+2+2+3=8,所以3对应的月之数就是8。
Input
Output
Sample Input
3 1 2 3
Sample Output
1 3 8
accept:
1 :#include<stdio.h> 2 int tot(int x){ 3 int flot=0; 4 while(x){ 5 if(x%2)flot++; 6 x/=2; 7 } 8 return flot; 9 } 10 int main(){ 11 int T,n,start,end,sum; 12 scanf("%d",&T); 13 while(T--){start=end=1;sum=0; 14 scanf("%d",&n); 15 for(int i=1;i<n;++i)start<<=1,end<<=1; 16 end<<=1; 17 //printf("%d %d\n",start,end); 18 for(int i=start;i<end;++i){ 19 sum+=tot(i); 20 } 21 printf("%d\n",sum); 22 } 23 return 0; 24 }
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 39 Accepted Submission(s) : 25
Font: Times New Roman | Verdana | Georgia
Font Size: ← →
Problem Description
你的任务是:对这些分割得到的整数,依从小到大的顺序排序输出。
Input
输入数据保证:分割得到的非负整数不会大于100000000;输入数据不可能全由‘5’组成。
Output
Sample Input
0051231232050775
Sample Output
0 77 12312320
Source
1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 int change(char *p){int x=0; 6 for(int i=0;p[i];++i){ 7 x=x*10+p[i]-'0'; 8 } 9 return x; 10 } 11 int main(){int n[1010],i; 12 char m[1010],*p; 13 while(~scanf("%s",m)){ 14 p=strtok(m,"5"); 15 for(i=0;p;i++,p=strtok(NULL,"5")){ 16 n[i]=change(p); 17 } 18 sort(n,n+i); 19 for(int j=0;j<i;++j){ 20 if(j)printf(" "); 21 printf("%d",n[j]); 22 } 23 puts(""); 24 } 25 return 0; 26 }