CF407A.Triangle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a right triangle with legs of length a and b . Your task is to determine whether it is possible to locate the triangle on the plane in such a way that none of its sides is parallel to the coordinate axes. All the vertices must have integer coordinates. If there exists such a location, you have to output the appropriate coordinates of vertices.
输入格式
The first line contains two integers a,b ( 1<=a,b<=1000 ), separated by a single space.
输出格式
In the first line print either "YES" or "NO" (without the quotes) depending on whether the required location exists. If it does, print in the next three lines three pairs of integers — the coordinates of the triangle vertices, one pair per line. The coordinates must be integers, not exceeding 109 in their absolute value.
输入输出样例
输入#1
1 1
输出#1
NO
输入#2
5 5
输出#2
YES 2 1 5 5 -2 4
输入#3
5 10
输出#3
YES -10 4 -2 -2 1 2