Wrong Answer
Code
#include <iostream>
using namespace std;
#define ll long long int
#define ld long double
#define endl '\n'
#define MIR183_Mac ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
void solve() {
// Your code here
ll n,k;
cin>>n>>k;
ll ans=0;
if(n<k){
ans+=abs(n-k);
}
cout<<ans<<endl;
}
signed main() {
MIR183_Mac;
// Always use ll, int may give TLE
ll tt;
// tt=1;
cin >> tt;
while (tt--) {
solve();
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1092 Bitwise AND
- Contest
- Brain Booster #5
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-09-05 17:02:27
- Judged At
- 2024-10-03 13:05:29
- Judged By
- Score
- 1
- Total Time
- 25ms
- Peak Memory
- 1.457 MiB