728x90
단계별로 풀어보기 수학1의 6단계 문제
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int t;
cin >> t;
for (int i = 0; i < t; i++) {
int height, width, customerNumber;
cin >> height >> width >> customerNumber;
int n = 1;
int floor = 1;
int room = 1;
if (customerNumber % height == 0) room = customerNumber / height;
else room = customerNumber / height + 1;
if(customerNumber % height == 0) floor = customerNumber % height + height;
else floor = customerNumber % height;
cout << floor * 100 + room << '\n';
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 1712 손익분기점 (0) | 2020.02.02 |
---|---|
[백준] 1085번 직사각형에서 탈출 (0) | 2020.02.02 |
[백준] 11726번 2×n 타일링 (0) | 2020.02.01 |
[백준] 10844번 쉬운 계단 수 (0) | 2020.01.31 |
[백준] 2292번 벌집 (0) | 2020.01.31 |