/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 1ms 540.0 KiB
#3 Wrong Answer 2ms 540.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

#define		Alhamdulillah 		ios_base::sync_with_stdio(0); cin.tie(0);
#define     db                  cout << 'c' << endl;
#define	    ll 			 		long long
#define	    ld 			 		long double
#define	    ull 			 	unsigned long long
#define	    lcm(a,b) 			((a*b)/__gcd(a,b))
#define	    endl 			 	"\n"
#define	    pb 					push_back
#define	    ppb 				pop_back
#define	    all(c) 				c.begin(),c.end()
#define     srt(v)             	sort(v.begin(),v.end())
#define	    rsrt(v)            	sort(v.rbegin(),v.rend())
#define     printp(p)          	for(auto i:p)   cout << i.first <<  " " << i.second << endl; cout << endl;
#define     printv(v)          	for(auto i:v)   cout << i <<  " "; cout << endl;
#define     printm(m)          	for(auto [x,y]:m)   cout << x <<  " " << y << endl; cout << endl;


void solve(){
    ll a, b, x;    cin >> a >> b >> x;
    if(x > a)   cout << 0 << " " << b - (x-a) << endl;
    else    cout << a-x << " " << b << endl;
}


int main(){
    Alhamdulillah
    int t;  cin >> t;
    while(t--)    solve();
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1187 Ticket Battle: Hridoy vs Kamona
Contest
Brain Booster #9
Language
C++17 (G++ 13.2.0)
Submit At
2025-04-06 15:36:46
Judged At
2025-04-06 15:36:46
Judged By
Score
10
Total Time
2ms
Peak Memory
540.0 KiB