• 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 }
  • 相关阅读:
    HTTP状态码
    CentOS 7 上安装vim(默认未安装)
    yum安装提示Another app is currently holding the yum lock; waiting for it to exit...
    CentOS 7 安装telnet服务
    shell编程
    shell基础
    ssh相关命令
    ssh无密码连接
    centos7小命令
    日志管理
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11469941.html
Copyright © 2020-2023  润新知