CF333C.Lucky Tickets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Gerald has a friend, Pollard. Pollard is interested in lucky tickets (ticket is a sequence of digits). At first he thought that a ticket is lucky if between some its digits we can add arithmetic signs and brackets so that the result obtained by the arithmetic expression was number 100. But he quickly analyzed all such tickets and moved on to a more general question. Now he explores kk -lucky tickets.

Pollard sais that a ticket is kk -lucky if we can add arithmetic operation signs between its digits to the left or right of them (i.e., "+", "-", " ×× ") and brackets so as to obtain the correct arithmetic expression whose value would equal kk . For example, ticket "224201016" is 1000-lucky as (2(2+4))×(2+0)+1016=1000(-2-(2+4))×(2+0)+1016=1000 .

Pollard was so carried away by the lucky tickets that he signed up for a seminar on lucky tickets and, as far as Gerald knows, Pollard will attend it daily at 7 pm in some famous institute and will commute to it in the same tram for mm days. In this tram tickets have eight digits. And Gerald wants to make a surprise for Pollard: each day Pollard will receive a tram kk -lucky ticket. The conductor has already agreed to give Pollard certain tickets during all these mm days and he only wants Gerald to tell him what kind of tickets to give out. In this regard, help Gerald pick exactly mm distinct kk -lucky tickets.

输入格式

The single line contains two integers kk and mm ( 0<=k<=1040<=k<=10^{4} , 1<=m<=31051<=m<=3·10^{5} ).

输出格式

Print mm lines. Each line must contain exactly 8 digits — the kk -winning ticket. The tickets may begin with 0, all tickets must be distinct. If there are more than mm distinct kk -lucky tickets, print any mm of them. It is guaranteed that at least mm distinct kk -lucky tickets exist. The tickets can be printed in any order.

输入输出样例

  • 输入#1

    0 3
    

    输出#1

    00000000
    00000001
    00000002
    
  • 输入#2

    7 4
    

    输出#2

    00000007
    00000016
    00000017
    00000018
    
首页