CF355A.Vasya and Digital Root

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya has recently found out what a digital root of a number is and he decided to share his knowledge with you.

Let's assume that S(n)S(n) is the sum of digits of number nn , for example, S(4098)=4+0+9+8=21S(4098)=4+0+9+8=21 . Then the digital root of number nn equals to:

  1. dr(n)=S(n)dr(n)=S(n) , if S(n)<10 ;
  2. dr(n)=dr(S(n))dr(n)=dr(S(n)) , if S(n)>=10S(n)>=10 .

For example, dr(4098)=dr(21)=3dr(4098)=dr(21)=3 .

Vasya is afraid of large numbers, so the numbers he works with are at most 10100010^{1000} . For all such numbers, he has proved that dr(n)=S(S(S(S(n))))dr(n)=S(S(S(S(n)))) (n<=101000)(n<=10^{1000}) .

Now Vasya wants to quickly find numbers with the given digital root. The problem is, he hasn't learned how to do that and he asked you to help him. You task is, given numbers kk and dd , find the number consisting of exactly kk digits (the leading zeroes are not allowed), with digital root equal to dd , or else state that such number does not exist.

输入格式

The first line contains two integers kk and dd (1<=k<=1000;0<=d<=9)(1<=k<=1000; 0<=d<=9) .

输出格式

In a single line print either any number that meets the requirements (without the leading zeroes) or "No solution" (without the quotes), if the corresponding number does not exist.

The chosen number must consist of exactly kk digits. We assume that number 0 doesn't contain any leading zeroes.

输入输出样例

  • 输入#1

    4 4
    

    输出#1

    5881
    
  • 输入#2

    5 1
    

    输出#2

    36172
    
  • 输入#3

    1 0
    

    输出#3

    0
    

说明/提示

For the first test sample dr(5881)=dr(22)=4dr(5881)=dr(22)=4 .

For the second test sample dr(36172)=dr(19)=dr(10)=1dr(36172)=dr(19)=dr(10)=1 .

首页