栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

1120 Friend Numbers (20 分) java 题解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

1120 Friend Numbers (20 分) java 题解

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 friend 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 104.

Output Specification:

For each case, print in the first line the number of different friend 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 Input:
4
3 6 9 26
解题思路:

题目大意:求一串数字每个数的各位数字之和(无重复)。

可以用哈希表存储,既可以用set直接存储,也可以用数组模拟哈希表。

java代码:
import java.io.*;
import java.util.*;

public class Main {
	public static void main(String[] args) throws NumberFormatException, IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		br.readLine();
		String[] split = br.readLine().split(" ");
		List list = new ArrayList();
		for(int i = 0; i < split.length;i++) {
			list.add(split[i]);
		}
		Set set = new HashSet();
		List ans = new ArrayList();
		for(int i = 0; i < list.size();i++) {
			String temp = list.get(i);
			int sum = 0;
			for(int j = 0; j < temp.length();j++) {
				sum += Integer.parseInt(temp.charAt(j) + "");
			}
			if(set.contains(sum)) {
				continue;
			}else {
				set.add(sum);
				ans.add(sum);
			}
		}
		Collections.sort(ans);
		StringBuilder builder = new StringBuilder();
		builder.append(ans.size() + "n");
		for(int i = 0; i < ans.size();i++) {
			builder.append(ans.get(i) + " ");
		}
		System.out.print(builder.toString().trim());
	}
}
PTA提交截图:

 

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/281172.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号