• PAT甲级——A1120 Friend Numbers【20】


    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 }
  • 相关阅读:
    MessageBoxButtons.OKCancel的选择事件
    Markdown 学习
    【Python】tesserocr的Path错误
    【Python套接字】socket编程
    【Python数据】懒人修仙传数值
    【Python画画】失败案例总结
    【Python画画】.ui文件转.py文件
    【Python截图】截图处理
    【想法】想做一个辅助工具
    【Python爬虫】从html里爬取中国大学排名
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11469941.html
Copyright © 2020-2023  润新知