반응형
import java.util.*;
class Main {
public static void main(String[] args){
Scanner scn = new Scanner(System.in);
int total = Integer.parseInt(scn.nextLine());
int amount = Integer.parseInt(scn.nextLine());
int answer = 0;
for(int i = 0; i < amount; i++){
String[] strarr = scn.nextLine().split(" ");
answer += (Integer.parseInt(strarr[0])*Integer.parseInt(strarr[1]));
}
if(total == answer) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
문자열에 담았던 것을 꺼낼 때 Integer.parseInt() 하는 것을 깜빡했지만 곰방 성공
반응형
'코딩테스트 문제 > 백준-자바' 카테고리의 다른 글
[백준] 과제 안 내신 분..? (5597번) (0) | 2022.12.11 |
---|---|
[백준] 평균은 넘겠지 (4344번) / 배열 (0) | 2022.12.06 |
[백준] 킹, 퀸, 룩, 비숍, 나이트, 폰 (3003번) / 입출력과 사칙연산 (0) | 2022.08.09 |
[백준] 주사위 세개 / (2480번) (0) | 2022.08.02 |
[백준] 오븐 시계 (2525번) // 조건문단계 (0) | 2022.08.01 |