See this article on my own blog https://dyingdown.github.io/2020/02/05/CodeForces-1296B-Food-Buying/
Mishka wants to buy some food in the nearby shop. Initially, he has s s 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 1≤x≤s 1≤x≤s, buy food that costs exactly xx burles and obtain ⌊ x 10 ⌋ ⌊\frac{x}{10}⌋ ⌊10x⌋ burles as a cashback (in other words, Mishka spends x x x burles and obtains ⌊ x 10 ⌋ ⌊\frac{x}{10}⌋ ⌊10x⌋ back). The operation ⌊ a b ⌋ ⌊\frac{a}{b}⌋ ⌊ba⌋ means a a a divided by b b b rounded down.
It is guaranteed that you can always buy some food that costs x x x for any possible value of x x 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 s=19 s=19 burles then the maximum number of burles he can spend is 21 21 21. Firstly, he can spend x = 10 x=10 x=10 burles, obtain 1 1 1 burle as a cashback. Now he has s = 10 s=10 s=10 burles, so can spend x = 10 x=10 x=10 burles, obtain 1 1 1 burle as a cashback and spend it too.
You have to answer t t t independent test cases.
Input
The first line of the input contains one integer t t t ( 1 ≤ t ≤ 104 ) (1≤t≤104) (1≤t≤104) — the number of test cases.
The next t t t lines describe test cases. Each test case is given on a separate line and consists of one integer s s s ( 1 ≤ s ≤ 109 ) (1≤s≤109) (1≤s≤109) — the number of burles Mishka initially has.
Output
For each test case print the answer on it — the maximum number of burles Mishka can spend if he buys food optimally.
Example
input
6
1
10
19
9876
12345
1000000000
output
1
11
21
10973
13716
1111111111
Analysis
This is stimulating the process.
First, spend the money of multiples of ten. Spend the most at once.
Second, add up the rest and feedback money.
Third, do the first do.
Loop until the money is 0.
Code
#include<bits/stdc++.h>
using namespace std;
int a[200000];
int main() {
int t;
cin >> t;
while(t --) {
int n;
cin >> n;
int count = 0;
while(n) {
if (n < 10) {
count += n;
n = 0;
} else {
int s = n / 10;
count += s * 10;
n %= 10;
n += s;
}
}
cout << count << endl;
}
return 0;
}