728x90
난이도 : 브론즈5
풀이일 : 04241
https://www.acmicpc.net/problem/25304
링크로 이동하기 귀찮은 분들을 위한 문제 캡쳐
풀이 코드
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");
}
}
}
느낀점
이제 좀 더 평소 풀던 알고리즘이 되어 가는 것 같아서 푸는게 재밌었다
앞으로는 파이썬으로 푸는 것들도 풀 수 있게 되겠지!
'알고리즘 > 🥉 브론즈' 카테고리의 다른 글
백준 25314 코딩은 체육과목 입니다 자바 풀이 (0) | 2023.05.09 |
---|---|
백준 2438 별찍기1 자바스크립트 풀이 (0) | 2023.05.08 |
백준 8393 합 자바 풀이 (0) | 2023.05.07 |
백준 10950 A+B -3 자바 풀이 (0) | 2023.05.06 |
백준 2739 구구단 자바 풀이 (0) | 2023.05.05 |