1057 数零壹 (20分)
给定一串长度不超过 1 的字符串,本题要求你将其中所有英文字母的序号(字母 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。
输入格式:
输入在一行中给出长度不超过 1、以回车结束的字符串。
输出格式:
在一行中先后输出 0 的个数和 1 的个数,其间以空格分隔。
输入样例:
PAT (Basic)
输出样例:
3 4
#include<iostream> #include<string> #include<algorithm> using namespace std; int main() { string s; int ans; while (getline(cin, s)) { ans = 0; transform(s.begin(), s.end(), s.begin(), ::tolower); for (int i = 0; i < s.size(); i++) { if (s[i] >= 'a' && s[i] <= 'z') ans += s[i] - 'a' + 1; } int cnt0 = 0, cnt1 = 0; while (ans) { if (ans % 2 == 0) cnt0++; if (ans % 2 == 1) cnt1++; ans /= 2; } cout << cnt0 << " " << cnt1 << endl; } return 0; }