Wrong Answer
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
- Submission
- Problem
- P1061 Bring equality
- Contest
- Brain Booster #4
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 16:09:20
- Judged At
- 2024-11-11 03:24:38
- Judged By
- Score
- 10
- Total Time
- 30ms
- Peak Memory
- 552.0 KiB