CF1296B.Food Buying
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1≤x≤s , buy food that costs exactly x burles and obtain ⌊10x⌋ burles as a cashback (in other words, Mishka spends x burles and obtains ⌊10x⌋ back). The operation ⌊ba⌋ means a divided by b rounded down.
It is guaranteed that you can always buy some food that costs x for any possible value of x .
Your task is to say the maximum number of burles Mishka can spend if he buys food optimally.
For example, if Mishka has s=19 burles then the maximum number of burles he can spend is 21 . Firstly, he can spend x=10 burles, obtain 1 burle as a cashback. Now he has s=10 burles, so can spend x=10 burles, obtain 1 burle as a cashback and spend it too.
You have to answer t independent test cases.
输入格式
The first line of the input contains one integer t ( 1≤t≤104 ) — the number of test cases.
The next t lines describe test cases. Each test case is given on a separate line and consists of one integer s ( 1≤s≤109 ) — the number of burles Mishka initially has.
输出格式
For each test case print the answer on it — the maximum number of burles Mishka can spend if he buys food optimally.
输入输出样例
输入#1
6 1 10 19 9876 12345 1000000000
输出#1
1 11 21 10973 13716 1111111111