#1일1알고리즘 8일차
https://www.acmicpc.net/problem/3052
import java.util.Scanner;
import java.util.HashSet;
public class jan09 {
public static void main(String[] args) {
Scanner s =new Scanner(System.in);
HashSet<Integer> hash=new HashSet<Integer>();
for(int i=0;i<10;i++) {
hash.add(s.nextInt()%42);
}
s.close();
System.out.println(hash.size());
}
}
HashSet에는 중복된 값이 들어갈 수 없다.
'JAVA > 백준' 카테고리의 다른 글
[백준/자바] 10871번 X보다 작은 수 (0) | 2022.01.13 |
---|---|
[백준/자바] 4344번 평균은 넘겠지 (0) | 2022.01.11 |
[백준/자바] 2908번 상수 (0) | 2022.01.08 |
[백준/자바] 2577번 (0) | 2022.01.06 |
[백준/자바] 1259번 팰린드롬수 (0) | 2022.01.04 |
댓글