[SWEA] 두가지 빵의 딜레마 Posted on 2020-02-01 | In Problem_Solving | 문제 보러가기 제한사항 이외의 제한사항은 없다. 첫번째 생각 더 적은 빵을 여러개 사는것으로 계산한다. Code 12345678910111213141516171819202122232425import java.util.Scanner; public class Solution { public static void main(String[] args) { // TODO Auto-generated method stub Scanner s = new Scanner(System.in); int T = s.nextInt(); for(int tc=1; tc<=T; tc++) { int A = s.nextInt(); int B = s.nextInt(); int C = s.nextInt(); int res = 0; if (A>B) { res = C/B; } else res = C/A; System.out.println("#"+tc+" "+res); } } }