🥞 BE
home

25304_영수증

담당자
완료 여부
Solved
요약
날짜
2024/07/08
태그
구현
기초
난이도
B4
출처
백준

코드

import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int X = sc.nextInt(); int N = sc.nextInt(); for (int i = 0; i < N; i++) { int a = sc.nextInt(); int b = sc.nextInt(); X -= (a * b); } if (X == 0) { System.out.println("Yes"); } else { System.out.println("No"); } } }
Java
복사

문제 해결 아이디어