반응형
현미빵(a), 단호박 빵(b)중 더 싼 가격의 빵으로 현재 가지고 있는 돈(c)을 나눠주면 된다.
소스코드
1 2 3 4 5 6 7 8 9 10 11 | #include <cstdio> using namespace std; int main(int argc, char** argv) { int t, a, b, c; scanf("%d", &t); for (int i=1; i<=t; i++) { scanf("%d %d %d", &a, &b, &c); printf("#%d %d\n", i, a>b?c/b:c/a); } return 0; } | cs |
반응형
'Algorithm' 카테고리의 다른 글
[SWEA 1219] 길찾기 (0) | 2019.07.24 |
---|---|
[SWEA 2805] 농작물 수확하기 (0) | 2019.07.23 |
[BOJ 7576] 토마토 (0) | 2019.07.05 |
[BOJ 1206] DFS와 BFS (0) | 2019.07.05 |
[BOJ 1120]문자열 (0) | 2019.07.03 |