CF1294C.Product of Three Numbers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given one integer number n . Find three distinct integers a,b,c such that 2≤a,b,c and a⋅b⋅c=n or say that it is impossible to do it.
If there are several answers, you can print any.
You have to answer t independent test cases.
输入格式
The first line of the input contains one integer t ( 1≤t≤100 ) — the number of test cases.
The next n lines describe test cases. The i -th test case is given on a new line as one integer n ( 2≤n≤109 ).
输出格式
For each test case, print the answer on it. Print "NO" if it is impossible to represent n as a⋅b⋅c for some distinct integers a,b,c such that 2≤a,b,c .
Otherwise, print "YES" and any possible such representation.
输入输出样例
输入#1
5 64 32 97 2 12345
输出#1
YES 2 4 8 NO NO NO YES 3 5 823