A12032 | Vasya and Triangle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vasya has got three integers $n$ , $m$ and $k$ . He'd like to find three integer points $(x_1, y_1)$ , $(x_2, y_2)$ , $(x_3, y_3)$ , such that $0 \le x_1, x_2, x_3 \le n$ , $0 \le y_1, y_2, y_3 \le m$ and the area of the triangle formed by these points is equal to $\frac{nm}{k}$ .
Help Vasya! Find such points (if it's possible). If there are multiple solutions, print any of them.
Help Vasya! Find such points (if it's possible). If there are multiple solutions, print any of them.
输入格式
The single line contains three integers $n$ , $m$ , $k$ ( $1\le n, m \le 10^9$ , $2 \le k \le 10^9$ ).
输出格式
If there are no such points, print "NO".
Otherwise print "YES" in the first line. The next three lines should contain integers $x_i, y_i$ — coordinates of the points, one point per line. If there are multiple solutions, print any of them.
You can print each letter in any case (upper or lower).
Otherwise print "YES" in the first line. The next three lines should contain integers $x_i, y_i$ — coordinates of the points, one point per line. If there are multiple solutions, print any of them.
You can print each letter in any case (upper or lower).
输入输出样例
输入 #1
4 3 3
输出 #1
YES 1 0 2 3 4 1
输入 #2
4 4 7
输出 #2
NO
In the first example area of the triangle should be equal to $\frac{nm}{k} = 4$ . The triangle mentioned in the output is pictured below:
In the second example there is no triangle with area $\frac{nm}{k} = \frac{16}{7}$ .
In the second example there is no triangle with area $\frac{nm}{k} = \frac{16}{7}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted