A1334.[COCI-2007_2008-contest3]#2 CUDAK

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Božo is a strange little boy. Every day he tires his friends with strange questions. Today's question is:
how many integers in the interval [A, B] are there such that the sum of their digits is S, and which is the smallest such number?
Write a program that answers Božo's question so that he can get some sleep.

输入格式

The input contains three integers A, B and S (1 ≤ A ≤ B < 1015, 1 ≤ S ≤ 135).

输出格式

The first line should contain the number of integers in the interval with the digit sum equal to S.
The second line should contain the smallest such integer.
The input data will guarantee that the first number is at least
1.

输入输出样例

  • 输入#1

    1 9 5

    输出#1

    1 
    5 
  • 输入#2

    1 100 10

    输出#2

    9 
    19
  • 输入#3

    11111 99999 24

    输出#3

    5445 
    11499 

说明/提示

For correctly outputting one of the two numbers you will receive 50% of the score.
Note: if you want to receive credit for just the second number, be sure to output something (0, for
example) as the first number so the judge can interpret your output correctly.

首页