/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 29ms 324.0 KiB
#3 Wrong Answer 28ms 548.0 KiB

Code

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

int main() {
    int T;
    cin >> T;
    
    while (T--) {
        int a,b,c;
        cin >> a >> b >> c;
        
       int cou=0;
       if(a==b and b==c and  c==a and a==c and c==b and b==a ){
        cou=0;
       }else{
        cou++;
       }
       cout << cou << endl;
    }
    
    return 0;
}

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:02:20
Judged At
2024-11-11 03:24:56
Judged By
Score
10
Total Time
29ms
Peak Memory
548.0 KiB