博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1064 朋友数(20)(代码)
阅读量:5142 次
发布时间:2019-06-13

本文共 815 字,大约阅读时间需要 2 分钟。

1064 朋友数(20 分)

如果两个整数各位数字的和是一样的,则被称为是“朋友数”,而那个公共的和就是它们的“朋友证号”。例如 123 和 51 就是朋友数,因为 1+2+3 = 5+1 = 6,而 6 就是它们的朋友证号。给定一些整数,要求你统计一下它们中有多少个不同的朋友证号。

输入格式:

输入第一行给出正整数 N。随后一行给出 N 个正整数,数字间以空格分隔。题目保证所有数字小于 10​4​​。

输出格式:

首先第一行输出给定数字中不同的朋友证号的个数;随后一行按递增顺序输出这些朋友证号,数字间隔一个空格,且行末不得有多余空格。

输入样例:

8123 899 51 998 27 33 36 12

输出样例:

43 6 9 26

 

#include
#include
#include
using namespace std;int main() { int n, sum; map
m; map
::iterator it; string str; cin >> n; while (n--) { sum = 0; cin >> str; for (int i = 0; i < str.length(); i++) sum += str[i] - '0'; m[sum]++; } cout << m.size() << endl; it = m.begin(); cout << it++->first; for (; it != m.end(); it++) cout << " " << it->first; return 0;}

 

转载于:https://www.cnblogs.com/F-itachi/p/9974431.html

你可能感兴趣的文章