Java - [백준] 3052번 나머지
본문 바로가기
알고리즘 풀이/백준

Java - [백준] 3052번 나머지

by IYK2h 2022. 9. 9.
728x90

 

서로 다른 값이 몇개 있는지 출력 = 중복 없는 값 출력 => set 자료형 이용해서 사이즈 구하면 되는 문제

 

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;
​
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        int a = 0;
        Set s = new HashSet();
        int arr[] = new int[10];
        for(int i : arr) {
            s.add(Integer.parseInt(bf.readLine())%42);
            a++;
        }
        System.out.println(s.size());
    }
}

 

728x90

댓글