CF1030D.Vasya and Triangle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vasya has got three integers n , m and k . He'd like to find three integer points (x1,y1) , (x2,y2) , (x3,y3) , such that 0≤x1,x2,x3≤n , 0≤y1,y2,y3≤m and the area of the triangle formed by these points is equal to knm .
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≤n,m≤109 , 2≤k≤109 ).
输出格式
If there are no such points, print "NO".
Otherwise print "YES" in the first line. The next three lines should contain integers xi,yi — 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 knm=4 . The triangle mentioned in the output is pictured below:
In the second example there is no triangle with area knm=716 .