CF111A.Petya and Inequiations

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Petya loves inequations. Help him find nn positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} , such that the following two conditions are satisfied:

  • a12+a22+...+an2>=xa_{1}^{2}+a_{2}^{2}+...+a_{n}^{2}>=x
  • a1+a2+...+an<=ya_{1}+a_{2}+...+a_{n}<=y

输入格式

The first line contains three space-separated integers nn , xx and yy ( 1<=n<=105,1<=x<=1012,1<=y<=1061<=n<=10^{5},1<=x<=10^{12},1<=y<=10^{6} ).

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is recommended to use cin, cout streams or the %I64d specificator.

输出格式

Print nn positive integers that satisfy the conditions, one integer per line. If such numbers do not exist, print a single number "-1". If there are several solutions, print any of them.

输入输出样例

  • 输入#1

    5 15 15
    

    输出#1

    4
    4
    1
    1
    2
    
  • 输入#2

    2 3 2
    

    输出#2

    -1
    
  • 输入#3

    1 99 11
    

    输出#3

    11
    
首页