A12221 | Frog Jumping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A frog is currently at the point $0$ on a coordinate axis $Ox$ . It jumps by the following algorithm: the first jump is $a$ units to the right, the second jump is $b$ units to the left, the third jump is $a$ units to the right, the fourth jump is $b$ units to the left, and so on.
Formally:
- if the frog has jumped an even number of times (before the current jump), it jumps from its current position $x$ to position $x+a$ ;
- otherwise it jumps from its current position $x$ to position $x-b$ .
Your task is to calculate the position of the frog after $k$ jumps.
But... One more thing. You are watching $t$ different frogs so you have to answer $t$ independent queries.
Formally:
- if the frog has jumped an even number of times (before the current jump), it jumps from its current position $x$ to position $x+a$ ;
- otherwise it jumps from its current position $x$ to position $x-b$ .
Your task is to calculate the position of the frog after $k$ jumps.
But... One more thing. You are watching $t$ different frogs so you have to answer $t$ independent queries.
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 1000$ ) — the number of queries.
Each of the next $t$ lines contain queries (one query per line).
The query is described as three space-separated integers $a, b, k$ ( $1 \le a, b, k \le 10^9$ ) — the lengths of two types of jumps and the number of jumps, respectively.
Each of the next $t$ lines contain queries (one query per line).
The query is described as three space-separated integers $a, b, k$ ( $1 \le a, b, k \le 10^9$ ) — the lengths of two types of jumps and the number of jumps, respectively.
输出格式
Print $t$ integers. The $i$ -th integer should be the answer for the $i$ -th query.
输入输出样例
输入 #1
6 5 2 3 100 1 4 1 10 5 1000000000 1 6 1 1 1000000000 1 1 999999999
输出 #1
8 198 -17 2999999997 0 1
In the first query frog jumps $5$ to the right, $2$ to the left and $5$ to the right so the answer is $5 - 2 + 5 = 8$ .
In the second query frog jumps $100$ to the right, $1$ to the left, $100$ to the right and $1$ to the left so the answer is $100 - 1 + 100 - 1 = 198$ .
In the third query the answer is $1 - 10 + 1 - 10 + 1 = -17$ .
In the fourth query the answer is $10^9 - 1 + 10^9 - 1 + 10^9 - 1 = 2999999997$ .
In the fifth query all frog's jumps are neutralized by each other so the answer is $0$ .
The sixth query is the same as the fifth but without the last jump so the answer is $1$ .
In the second query frog jumps $100$ to the right, $1$ to the left, $100$ to the right and $1$ to the left so the answer is $100 - 1 + 100 - 1 = 198$ .
In the third query the answer is $1 - 10 + 1 - 10 + 1 = -17$ .
In the fourth query the answer is $10^9 - 1 + 10^9 - 1 + 10^9 - 1 = 2999999997$ .
In the fifth query all frog's jumps are neutralized by each other so the answer is $0$ .
The sixth query is the same as the fifth but without the last jump so the answer is $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted