A14214 | Add One
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an integer $n$ . You have to apply $m$ operations to it.
In a single operation, you must replace every digit $d$ of the number with the decimal representation of integer $d + 1$ . For example, $1912$ becomes $21023$ after applying the operation once.
You have to find the length of $n$ after applying $m$ operations. Since the answer can be very large, print it modulo $10^9+7$ .
In a single operation, you must replace every digit $d$ of the number with the decimal representation of integer $d + 1$ . For example, $1912$ becomes $21023$ after applying the operation once.
You have to find the length of $n$ after applying $m$ operations. Since the answer can be very large, print it modulo $10^9+7$ .
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 2 \cdot 10^5$ ) — the number of test cases.
The only line of each test case contains two integers $n$ ( $1 \le n \le 10^9$ ) and $m$ ( $1 \le m \le 2 \cdot 10^5$ ) — the initial number and the number of operations.
The only line of each test case contains two integers $n$ ( $1 \le n \le 10^9$ ) and $m$ ( $1 \le m \le 2 \cdot 10^5$ ) — the initial number and the number of operations.
输出格式
For each test case output the length of the resulting number modulo $10^9+7$ .
输入输出样例
输入 #1
5 1912 1 5 6 999 1 88 2 12 100
输出 #1
5 2 6 4 2115
For the first test, $1912$ becomes $21023$ after $1$ operation which is of length $5$ .
For the second test, $5$ becomes $21$ after $6$ operations which is of length $2$ .
For the third test, $999$ becomes $101010$ after $1$ operation which is of length $6$ .
For the fourth test, $88$ becomes $1010$ after $2$ operations which is of length $4$ .
For the second test, $5$ becomes $21$ after $6$ operations which is of length $2$ .
For the third test, $999$ becomes $101010$ after $1$ operation which is of length $6$ .
For the fourth test, $88$ becomes $1010$ after $2$ operations which is of length $4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted