BackJoon Algorithm 영수증 5655 (Java)

업데이트:
최대 1 분 소요

BackJoon Algorithm - Java

alt

문제

alt

풀이

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

public class Back_5565 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int total_count = Integer.parseInt(br.readLine());
        int sum = 0;
        for(int i = 0 ; i<9;i++) {
            sum += Integer.parseInt(br.readLine());
        }

        System.out.println(total_count - sum);
        br.close();
    }
}



댓글남기기