Discount

来源:互联网 发布:加权并查集算法 编辑:程序博客网 时间:2024/05/02 04:57

Discount


Time Limit:1sMemory limit:32MAccepted Submit:54Total Submit:117

Problem Description

People like to buy gifts in discount. For example, gift A with initial price RMB50, 30% off actually costsRMB35, gift B with initial price RMB104, 17% off actually costs RMB86.32.
Mr.Richman is a rich man. He hates small money, so he always pays an integer number of RMBs without getting any change. What's more, being a traditional Chinese person, the amount of money he pays always contains the lucky digit '8' (of course, the integer MUST be at least the actual price after discount). For example, he would pay RMB38 for gift A, and RMB87 for gift B.
Given the initial price and the discount for a gift, calculate how much Mr.Richman would like to pay.

Input

The first line contains t (1 ≤ t ≤ 20), the number of test cases followed. Each line contains two integers P and D(1 ≤ P ≤ 500, 1 ≤ D ≤ 99), the initial price and discount.

OutPut

For each test case, print the amount of money Mr.Richman would like to pay.

Sample Input

5 50 30 104 17 500 4 498 6 40 5

Sample Output

388748047838

Original: 2009 NIT Cup National Invitation Contest Practice Session

 

http://acm.fzu.edu.cn/problem.php?pid=1773

 

这一题是一种求一个数中是否含有某个数,这题里面求的是是否含有8这个数,比如448458380,如果没有,那就从个位逐渐加1,直到加最少的数就使这个数含有数字8。本程序的思想是这样的,用一个数组存放这个数的每一位:个位,十位,百位。然后一位一位的判断是否含有数字8,如果没有个位的数就加1,有点类似于高精度的加减法。