Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
vector<int> v(2);
for (int i = 0; i < 3; i++)
{
cin >> v[i];
}
int a = abs(v[0] - v[1]);
int b = abs(v[2] - v[1]);
int op = 0;
if (a > 0 && b > 0) op+=2;
else if (a > 0 || b > 0) op+=1;
cout << op << endl;
}
return 0;
}
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:46:05
- Judged At
- 2024-11-11 03:23:38
- Judged By
- Score
- 10
- Total Time
- 29ms
- Peak Memory
- 548.0 KiB