mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
20 lines
317 B
C++
20 lines
317 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
long long t, n, m, ans;
|
|
|
|
int main() {
|
|
cin >> t;
|
|
while (t--) {
|
|
ans = m = 0;
|
|
cin >> n;
|
|
while (n) {
|
|
ans += (n % 10 - (n % 10 > 7)) * pow(9, m++);
|
|
n /= 10;
|
|
}
|
|
cout << ans << endl;
|
|
}
|
|
return 0;
|
|
}
|