본문 바로가기
코딩테스트 준비/백준

[백준] 25304번 - 영수증 [Java]

by mwzz6 2025. 1. 8.

https://www.acmicpc.net/problem/25304

 

[백준] 25304번 - 영수증 [Java]
[백준] 25304번 - 영수증 [Java]


1.  아이디어

 

반복문으로 간단하게 해결할 수 있다.


2. 문제풀이

 

반복문으로 물건의 가격과 개수를 합해서 X와 비교하는 방식으로 구현했다.


3. 코드

 

import java.io.*;
import java.util.*;

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

        int X = Integer.parseInt(br.readLine());
        int N = Integer.parseInt(br.readLine());

        int sum = 0;
        for (int i = 0; i < N; i++) {
            st = new StringTokenizer(br.readLine());
            int a = Integer.parseInt(st.nextToken());
            int b = Integer.parseInt(st.nextToken());
            sum += a * b;
        }

        if (X == sum) System.out.println("Yes");
        else System.out.println("No");
    }
}

4. 후기