Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int a,b,c;
cin>>a>>b>>c;
if(a==b && b==c)
cout<<"0"<<endl;
else if(a==b ||b==c || c==a)
cout<<"1"<<endl;
else
cout<<"2"<<endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1061 Bring equality
- Contest
- Brain Booster #4
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-07-14 16:50:33
- Judged At
- 2024-11-11 03:23:29
- Judged By
- Score
- 10
- Total Time
- 28ms
- Peak Memory
- 548.0 KiB