100773: [AtCoder]ABC077 D - Small Multiple

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $700$ points

Problem Statement

Find the smallest possible sum of the digits in the decimal notation of a positive multiple of $K$.

Constraints

  • $2 \leq K \leq 10^5$
  • $K$ is an integer.

Input

Input is given from Standard Input in the following format:

$K$

Output

Print the smallest possible sum of the digits in the decimal notation of a positive multiple of $K$.


Sample Input 1

6

Sample Output 1

3

$12=6×2$ yields the smallest sum.


Sample Input 2

41

Sample Output 2

5

$11111=41×271$ yields the smallest sum.


Sample Input 3

79992

Sample Output 3

36

Input

题意翻译

给定一个整数 $K$。求一个 $K$ 的正整数倍 $S$,使得 $S$ 的数位累加和最小。 **【数据范围】** - $2 \le K \le {10}^5$; - $K$ 是整数。 **【输入格式】** 一行一个正整数 $K$。 **【输出格式】** 输出 $K$ 的正整数倍的最小数位累加和。 翻译提供者:Tang_pipi

加入题单

算法标签: