https://www.acmicpc.net/problem/3052
정답
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
HashSet<Integer> h = new HashSet<Integer>();
for(int i=0;i<10;i++){
h.add(Integer.parseInt(br.readLine())%42);
}
System.out.print(h.size());
}
}
풀이과정
- 서로 다른 나머지 ⇒중복 허용이 안됨 ⇒HashSet 사용
HashSet
https://lavender1122.tistory.com/238
'JAVA > 백준' 카테고리의 다른 글
[Java11] 1546번 : 평균 (0) | 2024.09.12 |
---|---|
[Java11] 10811번 : 바구니 뒤집기 (0) | 2024.09.12 |
[Java11] 10871번 : X보다 작은 수 (0) | 2024.09.11 |
[Java11] 10807번 : 개수 세기 (0) | 2024.09.11 |
[Java11] 10951번 : A+B-4 (0) | 2024.09.11 |