/ SeriousOJ /

Record Detail

Accepted


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

Code

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int t;
    cin>>t;
    while(t--){
       int a[3];
       for(int i=0; i<3; i++){
        cin>>a[i];
       }
       sort(a,a+3);
       if(a[0]==a[1] && a[1]==a[2]){
        cout<<0<<endl;
       }
       else if((a[2]-a[0])==(a[2]-a[1])){
           cout<<1<<endl;
       }
        else{
            cout<<2<<endl;
        }
       }
    }

Information

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