A12780 | Book Reading
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Polycarp is reading a book consisting of $n$ pages numbered from $1$ to $n$ . Every time he finishes the page with the number divisible by $m$ , he writes down the last digit of this page number. For example, if $n=15$ and $m=5$ , pages divisible by $m$ are $5, 10, 15$ . Their last digits are $5, 0, 5$ correspondingly, their sum is $10$ .
Your task is to calculate the sum of all digits Polycarp has written down.
You have to answer $q$ independent queries.
Your task is to calculate the sum of all digits Polycarp has written down.
You have to answer $q$ independent queries.
输入格式
The first line of the input contains one integer $q$ ( $1 \le q \le 1000$ ) — the number of queries.
The following $q$ lines contain queries, one per line. Each query is given as two integers $n$ and $m$ ( $1 \le n, m \le 10^{16}$ ) — the number of pages in the book and required divisor, respectively.
The following $q$ lines contain queries, one per line. Each query is given as two integers $n$ and $m$ ( $1 \le n, m \le 10^{16}$ ) — the number of pages in the book and required divisor, respectively.
输出格式
For each query print the answer for it — the sum of digits written down by Polycarp.
输入输出样例
输入 #1
7 1 1 10 1 100 3 1024 14 998244353 1337 123 144 1234312817382646 13
输出 #1
1 45 153 294 3359835 0 427262129093995
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted