[백준] 3052 나머지 - Java

Yunki Kim·2022년 12월 8일
0

백준

목록 보기
44/104
post-thumbnail

문제


링크


코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        boolean[] arr = new boolean[42];
        for (int i = 0; i < 10; i++) {
            arr[Integer.parseInt(br.readLine()) % 42] = true;
        }
        br.close();

        int count = 0;
        for (int i = 0; i < arr.length; i++) {
            if (arr[i]) {
                count++;
            }
        }
        System.out.println(count);
    }
}

리뷰

처음에 잘못 방향을 잡아 헷갈렸다 😅

0개의 댓글