CF1690A.Print a Pedestal (Codeforces logo?)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Given the integer nn — the number of available blocks. You must use all blocks to build a pedestal.

The pedestal consists of 33 platforms for 22 -nd, 11 -st and 33 -rd places respectively. The platform for the 11 -st place must be strictly higher than for the 22 -nd place, and the platform for the 22 -nd place must be strictly higher than for the 33 -rd place. Also, the height of each platform must be greater than zero (that is, each platform must contain at least one block).

Example pedestal of n=11n=11 blocks: second place height equals 44 blocks, first place height equals 55 blocks, third place height equals 22 blocks.Among all possible pedestals of nn blocks, deduce one such that the platform height for the 11 -st place minimum as possible. If there are several of them, output any of them.

输入格式

The first line of input data contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Each test case contains a single integer nn ( 6n1056 \le n \le 10^5 ) — the total number of blocks for the pedestal. All nn blocks must be used.

It is guaranteed that the sum of nn values over all test cases does not exceed 10610^6 .

输出格式

For each test case, output 33 numbers h2,h1,h3h_2, h_1, h_3 — the platform heights for 22 -nd, 11 -st and 33 -rd places on a pedestal consisting of nn blocks ( h1+h2+h3=nh_1+h_2+h_3=n , 0<h3<h2<h10 < h_3 < h_2 < h_1 ).

Among all possible pedestals, output the one for which the value of h1h_1 minimal. If there are several of them, output any of them.

输入输出样例

  • 输入#1

    6
    11
    6
    10
    100000
    7
    8

    输出#1

    4 5 2
    2 3 1
    4 5 1
    33334 33335 33331
    2 4 1
    3 4 1

说明/提示

In the first test case we can not get the height of the platform for the first place less than 55 , because if the height of the platform for the first place is not more than 44 , then we can use at most 4+3+2=94 + 3 + 2 = 9 blocks. And we should use 11=4+5+211 = 4 + 5 + 2 blocks. Therefore, the answer 4 5 2 fits.

In the second set, the only suitable answer is: 2 3 1.

首页