-
Notifications
You must be signed in to change notification settings - Fork 16
/
Digit_Removal.cpp
92 lines (90 loc) · 2.35 KB
/
Digit_Removal.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// ----------------------------- || ** Hacktober 2021 ** || -------------------------------
/*
* Author : Umesh Kumar
* Date : 09/10/2021
* Problem : https://www.codechef.com/OCT21C/problems/DIGITREM
*/
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int T;
cin >> T;
while (T--)
{
int n, d, i, j;
cin >> n >> d;
string num = to_string(n);
int len = num.size();
if (d == 0)
{
string s(len, '1');
for (int i = 0; i < num.length(); i++)
{
if (num[i] == '0')
break;
s[i] = num[i];
}
cout << stoll(s) - n << endl;
}
else if (d == 9)
{
if (num[0] == '9')
{
string s(len + 1, '0');
s[0] = '1';
cout << stoll(s) - n << endl;
}
else
{
string s(len, '0');
int i = 0;
bool found = false;
while (i < len)
{
if (num[i] >= '8')
{
j = i;
while (j < len && num[j] >= '8')
{
if (num[j] == '9')
{
if(i==0)
s = '1' + s;
else
s[i-1] += 1;
found = true;
break;
}
j++;
}
}
if(found)
break;
s[i] = num[i];
i++;
}
cout << stoll(s) - n << endl;
}
}
else
{
string s(len, '0');
for (int i = 0; i < len; i++)
{
if (num[i] - '0' == d)
{
s[i] = (num[i] + 1);
break;
}
s[i] = num[i];
}
cout << stoll(s) - n << endl;
}
}
return 0;
}