문제
두가지 종류의 빵의 가격과 은비가 가지고 있는 돈이 주어졌을 때, 은비가 최대한 살 수 있는 빵의 갯수를 구하는 문제
풀이방법
입력된 두 빵의 가격중 낮은 빵으로 최대한으로 산다
소스코드
package samsung;
import java.util.*;
public class s_5162 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int test = sc.nextInt();
for(int t = 1; t <= test; t++) {
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int min = Math.min(a, b);
System.out.println("#" + t + " " + (c / min));
}
}
}
'Problem Solving > SWEA' 카테고리의 다른 글
[SWEA] 1873. 상호의 배틀필드 (0) | 2020.02.22 |
---|---|
[SWEA] 5356. 의석이의 세로로 말해요 (0) | 2020.02.21 |
[SWEA] 4751. 다솔이의 다이아몬드 장식 (0) | 2020.02.21 |
[SWEA] 4676. 늘어지는 소리 만들기 (0) | 2020.02.21 |
[SWEA] 4466. 최대 성적표 만들기 (0) | 2020.02.21 |
댓글