-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmmax.cpp
More file actions
39 lines (35 loc) · 756 Bytes
/
mmax.cpp
File metadata and controls
39 lines (35 loc) · 756 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
37
38
39
#include <bits/stdc++.h>
using namespace std;
#define ld long long int
ld mod(string k, ld n){
ld ans = 0;
for(int i = 0; i < k.length(); i++){
ans = (ans * 10 + (k[i] - '0')) % n;
}
return ans;
}
ld solve(string k, ld n){
// in long long int range
// ld num = k % n;
ld num = mod(k, n);
if(2 * num == n){
return 2*num-1;
}else if(2 * num < n){
return 2*num;
}else return 2*(n-num);
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ld test;
ld N;
string k;
cin >> test;
while(test--){
cin >> N;
cin >> k;
ld result = solve(k, N);
cout << result << "\n";
}
return 0;
}