forked from vedantpople4/problem_solving_cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1328A.cpp
More file actions
36 lines (31 loc) · 937 Bytes
/
1328A.cpp
File metadata and controls
36 lines (31 loc) · 937 Bytes
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
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.
#CODE:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
{
int a , b;
cin>>a>>b;
int c = a/b;
int d = c+1;
int e = a%b;
if(e==0)
cout<<e<<endl;
else
{
int f = d*b;
int g = f-a;
cout<<g<<endl;
}
}
return 0;
}