/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 564.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 5ms 816.0 KiB
#5 Accepted 38ms 1.344 MiB
#6 Accepted 38ms 1.52 MiB
#7 Accepted 38ms 1.27 MiB
#8 Accepted 41ms 1.141 MiB
#9 Accepted 2ms 588.0 KiB
#10 Accepted 38ms 1.277 MiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Sun Apr 06 2025 9:30:07 PM
 */
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);

void sir()
{
    ll a,b,c; cin>>a>>b>>c;
    cout<<max(0ll,a-c)<<" ";
    if(c<=a)cout<<b<<endl;
    else cout<<max(0ll, (b-(c-a)))<<endl;
}

int main() {
    ALLAHU_AKBAR

    ll t = 1;
    cin>>t;
    while(t--)
    {
        sir();
    }
    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 16:37:58
Judged At
2025-04-06 16:37:58
Judged By
Score
100
Total Time
41ms
Peak Memory
1.52 MiB