#include <stdio.h>
int main()
{
int testnum;
int w,h,n;
int temp;
scanf("%d",&testnum);
while(testnum-- > 0)
{
scanf("%d %d %d",&h,&w,&n);
temp = n%h==0 ? h:n%h;
printf("%d\n",temp*100+((n-1)/h+1));
}
return 0;
}
728x90
반응형
'알고리즘 > solved.ac' 카테고리의 다른 글
[class2] (백준 2775) 부녀회장이 될테야 (0) | 2021.09.24 |
---|---|
[class2] (백준 2292) 벌집 (0) | 2021.09.24 |
[class2] (백준 2231) 분해합 (0) | 2021.09.24 |
[class2] (백준 4153) 직각삼각형 (0) | 2021.09.24 |
[class2] (백준 1085) 직사각형에서 탈출 (0) | 2021.09.24 |