본문 바로가기
Problem Solving/SWEA

[SWEA] 5162. 두가지 빵의 딜레마

by 테리는당근을좋아해 2020. 2. 21.

문제

두가지 종류의 빵의 가격과 은비가 가지고 있는 돈이 주어졌을 때, 은비가 최대한 살 수 있는 빵의 갯수를 구하는 문제

 

풀이방법

입력된 두 빵의 가격중 낮은 빵으로 최대한으로 산다

 

소스코드

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));
		}
	}
}

 

댓글