CF1886A.Sum of Three
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp has an integer n .
He wants to represent his number as a sum of three distinct positive integers x , y , and z . Additionally, Monocarp wants none of the numbers x , y , and z to be divisible by 3 .
Your task is to help Monocarp to find any valid triplet of distinct positive integers x , y , and z , or report that such a triplet does not exist.
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of testcases.
The only line of each testcase contains a single integer n ( 1≤n≤109 ).
输出格式
For each testcase, if there is no valid triplet x , y , and z , print NO on the first line.
Otherwise, print YES on the first line. On the second line, print any valid triplet of distinct positive integers x , y , and z such that x+y+z=n , and none of the printed numbers are divisible by 3 . If there are multiple valid triplets, you can print any of them.
输入输出样例
输入#1
4 10 4 15 9
输出#1
YES 4 5 1 NO YES 2 8 5 NO
说明/提示
In the first testcase, one of the valid triplets is x=4 , y=5 , z=1 . None of these numbers are divisible by three, and 4+5+1=10 .
In the second testcase, there is no valid triplet.
In the third testcase, one of the valid triplets is x=2 , y=8 , z=5 . None of these numbers are divisible by three, and 2+8+5=15 .
In the fourth testcase, there is no valid triplet.