Submission #1262803


Source Code Expand

#include <iostream>

using namespace std;

int main(){
    int A,B,C;
    cin>>A>>B>>C;
    int ans=0;
    while(true){
        if((A&1)||(B&1)||(C&1)){
            cout<<ans<<endl;
            return 0;
        }
        if(A==B&&B==C){
            cout<<-1<<endl;
            return 0;
        }
        int AA=(B+C)/2,BB=(C+A)/2,CC=(A+B)/2;
        A=AA;B=BB;C=CC;
        ans++;
    }
    return 0;
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User conf
Language C++14 (Clang 3.8.0)
Score 300
Code Size 426 Byte
Status AC
Exec Time 5 ms
Memory 888 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 17
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, in1.txt, in10.txt, in11.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
in1.txt AC 5 ms 888 KB
in10.txt AC 1 ms 256 KB
in11.txt AC 1 ms 256 KB
in2.txt AC 1 ms 256 KB
in3.txt AC 1 ms 256 KB
in4.txt AC 1 ms 256 KB
in5.txt AC 1 ms 256 KB
in6.txt AC 1 ms 256 KB
in7.txt AC 1 ms 256 KB
in8.txt AC 1 ms 256 KB
in9.txt AC 1 ms 256 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB