CF1497C1.k-LCM (easy version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
It is the easy version of the problem. The only difference is that in this version k=3 .
You are given a positive integer n . Find k positive integers a1,a2,…,ak , such that:
- a1+a2+…+ak=n
- LCM(a1,a2,…,ak)≤2n
Here LCM is the least common multiple of numbers a1,a2,…,ak .
We can show that for given constraints the answer always exists.
输入格式
The first line contains a single integer t (1≤t≤104) — the number of test cases.
The only line of each test case contains two integers n , k ( 3≤n≤109 , k=3 ).
输出格式
For each test case print k positive integers a1,a2,…,ak , for which all conditions are satisfied.
输入输出样例
输入#1
3 3 3 8 3 14 3
输出#1
1 1 1 4 2 2 2 6 6