/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll   long long
#define pb   push_back
#define yes   cout<<"YES"<<endl
#define no   cout<<"NO"<<endl
#define all(x) (x).begin(), (x).end()
#define    gcd(a,b)      __gcd(a,b)
#define    lcm(a,b)  (a*b)/__gcd(a,b)
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);


void solve(){    
    vector<ll> v(3);
    for(ll i = 0; i < 3; i++){
        cin >> v[i];
    }
    sort(v.begin(), v.end());
    
    if(v[0] == v[1] && v[1] == v[2]) {
        cout << 0 << endl;
        return;
    }
    if(v[0] == v[1] || v[1] == v[2]) {
        cout << 1 << endl;
        return;
    }
    cout << 2 << endl;
}


int main()
{
    optimize();
    ll t=1;
    cin>>t;
    while(t--) solve();
}

Information

Submit By
Type
Pretest
Problem
P1061 Bring equality
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-14 16:04:42
Judged At
2024-07-14 16:04:42
Judged By
Score
10
Total Time
1ms
Peak Memory
540.0 KiB