/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 536.0 KiB
#2 Wrong Answer 8ms 572.0 KiB
#3 Wrong Answer 10ms 572.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 and a != c) cout << 2 << endl;
        else cout << 1 << 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:40:36
Judged At
2024-11-11 03:25:39
Judged By
Score
10
Total Time
10ms
Peak Memory
572.0 KiB