#ABC057C. Digits in Multiplication
Digits in Multiplication
题目描述
You are given an integer .
For two positive integers and , we will define as the larger of the following: the number of digits in the decimal notation of , and the number of digits in the decimal notation of .
For example, since has one digit and has two digits.
Find the minimum value of as ranges over all pairs of positive integers such that .
给你一个整数 。
对于两个正整数 和 ,我们将把 定义为以下两者中较大的一个: 的十进制符号中的位数,以及 的十进制符号中的位数。
例如, ,因为 有一位数,而 有两位数。
求 的最小值,因为 的范围是 的所有正整数对。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 的最小值,因为 的范围是 的所有正整数对。
样例 #1
样例输入 #1
10000
样例输出 #1
3
样例 #2
样例输入 #2
1000003
样例输出 #2
7
样例 #3
样例输入 #3
9876543210
样例输出 #3
6
说明
数据规模与约定
- 是整数。
样例 解释
在 处的最小值为 。
样例 解释
有两对 符合条件: 和 。对于这两对, 。