본문 바로가기

알고리즘/🥉 브론즈

백준 25304 영수증 자바 풀이

728x90

난이도 : 브론즈5

풀이일 : 04241

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

 

25304번: 영수증

준원이는 저번 주에 살면서 처음으로 코스트코를 가 봤다. 정말 멋졌다. 그런데, 몇 개 담지도 않았는데 수상하게 높은 금액이 나오는 것이다! 준원이는 영수증을 보면서 정확하게 계산된 것

www.acmicpc.net


링크로 이동하기 귀찮은 분들을 위한 문제 캡쳐


풀이 코드

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int total = sc.nextInt();
		int n = sc.nextInt();
		int temp = 0;
		for(int i = 0; i < n; i ++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			temp += a*b;
		}
		if(total == temp) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
			}
		}
}

느낀점

이제 좀 더 평소 풀던 알고리즘이 되어 가는 것 같아서 푸는게 재밌었다

앞으로는 파이썬으로 푸는 것들도 풀 수 있게 되겠지!