https://www.acmicpc.net/problem/10250
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
int T; cin >> T;
for (int t = 1; t <= T; t++) {
int H, W, N; cin >> H >> W >> N;
int floor = (N % H == 0) ? H : N % H;
string room = to_string(floor);
int num = ceil(N /(float) H);
if (num / 10 == 0) {
room += "0";
}
room += to_string(num);
cout << room << endl;
}
return 0;
}
'전공공부 > 코딩테스트' 카테고리의 다른 글
(c++) 백준 "2798) 블랙잭" (0) | 2022.06.02 |
---|---|
(c++) 백준 "2292) 벌집" (0) | 2022.06.02 |
(c++) 프로그래머스 "베스트앨범" (0) | 2022.05.31 |
(c++) 백준 "1106) 파일 합치기" (0) | 2022.05.31 |
(c++) 1209) Sum (0) | 2022.05.28 |