forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1328A - Divisibility Problem.cpp
More file actions
55 lines (38 loc) · 1.03 KB
/
1328A - Divisibility Problem.cpp
File metadata and controls
55 lines (38 loc) · 1.03 KB
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
/*
You are given two positive integers a and b. In one move you can increase a by 1 (replace a with a+1). Your task is to find the minimum number of moves you need to do in order to make a divisible by b. It is possible, that you have to make 0 moves, as a is already divisible by b. You have to answer t independent test cases.
Input
The first line of the input contains one integer t (1=t=104) — the number of test cases. Then t test cases follow.
The only line of the test case contains two integers a and b (1=a,b=109).
Output
For each test case print the answer — the minimum number of moves you need to do in order to make a divisible by b.
Example
inputCopy
5
10 4
13 9
100 13
123 456
92 46
outputCopy
2
5
4
333
0
*/
#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--) {
int a, b;
cin >> a >> b;
int r = a % b;
int res = r ? b - r : r;
cout << res << endl;
}
return 0;
}