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 bb 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 xx bonuses, where xx is the last digit of the number bb . As a result, the customer's account will have b+xb+x bonuses.

For example, if a customer had 2424 bonuses, he can either get a discount of 2424 or accumulate an additional 44 bonuses, after which his account will have 2828 bonuses.

At the moment, Vika has already accumulated ss bonuses.

The girl knows that during the remaining time of the bonus system, she will make kk 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 tt ( 1t1051 \le t \le 10^5 ) — the number of test cases. The description of the test cases follows.

The test case consists of a single line containing two integers ss and kk ( 0s1090 \le s \le 10^9 , 1k1091 \le k \le 10^9 ) — 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 44 .

In the second test case, Vika can get a discount of 1111 three times, and the total discount will be 3333 .

In the third example, regardless of Vika's actions, she will always get a total discount of 00 .

首页