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.
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.
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.
8 123 899 51 998 27 33 36 12
4 3 6 9 26
1 /* 2 Data: 2019-05-29 21:22:02 3 Problem: PAT_A1120#Friend Numbers 4 AC: 13:24 5 6 题目大意: 7 数字的各位和称为朋友ID,求有多少个朋友ID 8 */ 9 10 #include<cstdio> 11 #include<algorithm> 12 using namespace std; 13 const int M=1e4+10; 14 int vis[M]={0},ans[M]; 15 16 int Cal(int num) 17 { 18 int ans=0; 19 while(num!=0) 20 { 21 ans += num%10; 22 num /= 10; 23 } 24 return ans; 25 } 26 27 int main() 28 { 29 #ifdef ONLINE_JUDGE 30 #else 31 freopen("Test.txt", "r", stdin); 32 #endif 33 34 int n,v,cnt=0; 35 scanf("%d", &n); 36 for(int i=0; i<n; i++) 37 { 38 scanf("%d", &v); 39 v=Cal(v); 40 vis[v]++; 41 if(vis[v]==1) 42 ans[cnt++]=v; 43 } 44 printf("%d\n", cnt); 45 sort(ans,ans+cnt); 46 for(int i=0; i<cnt; i++) 47 printf("%d%c", ans[i], i==cnt-1?‘\n‘:‘ ‘); 48 49 return 0; 50 }
原文:https://www.cnblogs.com/blue-lin/p/10946553.html