정리하고기록하자

백준 (JAVA) - 영수증 (25304) 본문

백준 - 알고리즘

백준 (JAVA) - 영수증 (25304)

정리하고기록하자 2022. 12. 27. 20:43
반응형

백준 - 알고리즘 정렬 / 영수증 (25304) 문제 

 

 

문제

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

영수증에 적힌,

  • 구매한 각 물건의 가격과 개수
  • 구매한 물건들의 총 금액

을 보고, 구매한 물건의 가격과 개수로 계산한 총 금액이 영수증에 적힌 총 금액과 일치하는지 검사해보자.


 

예제 입력 한 값을 보면 

260000
4
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int total =  sc.nextInt();
        int count = sc.nextInt();

    }
}

그 안에서 값들을 입력 해서 모든 값들을 입력 하고 나서 total 값과 일치 하는지 확인!!

20000 5
30000 2
10000 6
5000 8
 for(int i = 0; i< count; i++){
    int price = sc.nextInt();
    int num = sc.nextInt();
    total = total - (price * num);
}

if(total == 0) {
	System.out.println("Yes");
} else {
	System.out.println("No");
}

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int total =  sc.nextInt();
        int count = sc.nextInt();

        for(int i = 0; i< count; i++){
            int price = sc.nextInt();
            int num = sc.nextInt();

            total = total - (price * num);
        }

        if(total == 0) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }


    }
}

결과는 !!

성공!

반응형