CF1848D.Vika and Bonuses
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A new bonus system has been introduced at Vika's favorite cosmetics store, "Golden Pear"!
The system works as follows: suppose a customer has b bonuses. Before paying for the purchase, the customer can choose one of two options:
- Get a discount equal to the current number of bonuses, while the bonuses are not deducted.
- Accumulate an additional x bonuses, where x is the last digit of the number b . As a result, the customer's account will have b+x bonuses.
For example, if a customer had 24 bonuses, he can either get a discount of 24 or accumulate an additional 4 bonuses, after which his account will have 28 bonuses.
At the moment, Vika has already accumulated s bonuses.
The girl knows that during the remaining time of the bonus system, she will make k more purchases at the "Golden Pear" store network.
After familiarizing herself with the rules of the bonus system, Vika became interested in the maximum total discount she can get.
Help the girl answer this question.
输入格式
Each test consists of multiple test cases. The first line contains a single integer t ( 1≤t≤105 ) — the number of test cases. The description of the test cases follows.
The test case consists of a single line containing two integers s and k ( 0≤s≤109 , 1≤k≤109 ) — the current number of bonuses in Vika's account and how many more purchases the girl will make.
输出格式
For each test case, output a single integer — the maximum total discount that can be obtained through the bonus system.
输入输出样例
输入#1
6 1 3 11 3 0 179 5 1000000000 723252212 856168102 728598293 145725253
输出#1
4 33 0 9999999990 1252047198518668448 106175170582793129
说明/提示
In the first test case, Vika can accumulate bonuses after the first and second purchases, after which she can get a discount of 4 .
In the second test case, Vika can get a discount of 11 three times, and the total discount will be 33 .
In the third example, regardless of Vika's actions, she will always get a total discount of 0 .