/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 5ms 424.0 KiB
#3 Wrong Answer 5ms 580.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define endl '\n'

int32_t main()
{   
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    
    int t; cin >> t;
    while(t--) {
        int a,b,c; cin >> a >> b >> c;
        if (a == b and b == c) cout << 0 << endl;
        else if(a == b and b != c) cout << 1 << endl;
        else if (b == c and c != a) cout << 1 << endl;
        else if (a == c and a != b) cout << 1 << endl;
        else cout << 2 << 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 15:52:01
Judged At
2024-11-11 03:25:20
Judged By
Score
10
Total Time
5ms
Peak Memory
580.0 KiB