CF1506A.Strange Table

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp found a rectangular table consisting of nn rows and mm columns. He noticed that each cell of the table has its number, obtained by the following algorithm "by columns":

  • cells are numbered starting from one;
  • cells are numbered from left to right by columns, and inside each column from top to bottom;
  • number of each cell is an integer one greater than in the previous cell.

For example, if n=3n = 3 and m=5m = 5 , the table will be numbered as follows:

147101325811143691215\begin{matrix} 1 & 4 & 7 & 10 & 13 \\ 2 & 5 & 8 & 11 & 14 \\ 3 & 6 & 9 & 12 & 15 \\ \end{matrix}

However, Polycarp considers such numbering inconvenient. He likes the numbering "by rows":

  • cells are numbered starting from one;
  • cells are numbered from top to bottom by rows, and inside each row from left to right;
  • number of each cell is an integer one greater than the number of the previous cell.

For example, if n=3n = 3 and m=5m = 5 , then Polycarp likes the following table numbering:

123456789101112131415 \begin{matrix} 1 & 2 & 3 & 4 & 5 \\ 6 & 7 & 8 & 9 & 10 \\ 11 & 12 & 13 & 14 & 15 \\ \end{matrix}

Polycarp doesn't have much time, so he asks you to find out what would be the cell number in the numbering "by rows", if in the numbering "by columns" the cell has the number xx?

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ). Then tt test cases follow.

Each test case consists of a single line containing three integers nn , mm , xx ( 1n,m1061 \le n, m \le 10^6 , 1xnm1 \le x \le n \cdot m ), where nn and mm are the number of rows and columns in the table, and xx is the cell number.

Note that the numbers in some test cases do not fit into the 3232 -bit integer type, so you must use at least the 6464 -bit integer type of your programming language.

输出格式

For each test case, output the cell number in the numbering "by rows".

输入输出样例

  • 输入#1

    5
    1 1 1
    2 2 3
    3 5 11
    100 100 7312
    1000000 1000000 1000000000000

    输出#1

    1
    2
    9
    1174
    1000000000000
首页