PAT 1057. 数零壹(20)

时间:2022-10-03 22:19:48

给定一串长度不超过105的字符串,本题要求你将其中所有英文字母的序号(字母a-z对应序号1-26,不分大小写)相加,得到整数N,然后再分析一下N的二进制表示中有多少0、多少1。例如给定字符串“PAT (Basic)”,其字母序号之和为:16+1+20+2+1+19+9+3=71,而71的二进制是1000111,即有3个0、4个1。

输入格式:

输入在一行中给出长度不超过105、以回车结束的字符串。

输出格式:

在一行中先后输出0的个数和1的个数,其间以空格分隔。

输入样例:

PAT (Basic)

输出样例:

3 4
 #include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<ctype.h>
#include<math.h> int main(){
char a[];
gets(a);
long sum = ;
int lena = strlen(a);
for(int i=;i<lena;i++){
a[i] = tolower(a[i]);
if(a[i]>='a'&&a[i]<='z'){
sum = a[i]-'a'++sum;
}
}
int temp;
int n1=,n2=;
while(sum){
temp = sum%;
if(temp)
n2++;
else
n1++;
sum = sum/;
}
printf("%d %d",n1,n2);
}