[BOJ] 25304

Organ·2023년 9월 2일
0

[문제 풀이]

목록 보기
11/123

영수증

문제

입력

출력

내 풀이

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

public class Main {
	public static void main(String[] args) throws IOException
	{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		int X = Integer.parseInt(br.readLine());		// 총 금액
		int N = Integer.parseInt(br.readLine());		// 물건의 종류의 수
		int a,b;										// 물건의 가격과 개수
		
		int total = 0;									// X와 비교할 누적합
		
		for(int i = 1; i <= N; i++)
		{
			String str = br.readLine();
			StringTokenizer st = new StringTokenizer(str);
			
			a = Integer.parseInt(st.nextToken());
			b = Integer.parseInt(st.nextToken());
			
			total += a * b;
			
		}
		
		if(X == total)
			System.out.println("Yes");
		else
			System.out.println("No");
	}
}

0개의 댓글