码迷,mamicode.com
首页 > 其他好文 > 详细

PAT甲级——A1120 Friend Numbers【20】

时间:2019-09-05 21:46:42      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:class   first   sha   pre   using   different   nta   space   pac   

Two integers are called "friend numbers" if they share the same sum of their digits, and the sum is their "friend ID". For example, 123 and 51 are friend numbers since 1+2+3 = 5+1 = 6, and 6 is their friend ID. Given some numbers, you are supposed to count the number of different frind ID‘s among them.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N. Then N positive integers are given in the next line, separated by spaces. All the numbers are less than 1.

Output Specification:

For each case, print in the first line the number of different frind ID‘s among the given integers. Then in the second line, output the friend ID‘s in increasing order. The numbers must be separated by exactly one space and there must be no extra space at the end of the line.

Sample Input:

8
123 899 51 998 27 33 36 12

Sample Output:

4
3 6 9 26


 1 #include <iostream>
 2 #include <set>
 3 #include <string>
 4 using namespace std;
 5 int main()
 6 {
 7     int n;
 8     string s;
 9     set<int>res;
10     cin >> n;
11     while (n--)
12     {
13         cin >> s;
14         int sum = 0;
15         for (auto a : s)
16             sum += a - 0;
17         res.insert(sum);
18     }
19     cout << res.size() << endl;
20     for (auto a : res)
21         cout << (a == *(res.begin()) ? "" : " ") << a;
22     cout << endl;
23     return 0;
24 }

 

PAT甲级——A1120 Friend Numbers【20】

标签:class   first   sha   pre   using   different   nta   space   pac   

原文地址:https://www.cnblogs.com/zzw1024/p/11469941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!