Submission #2235757


Source Code Expand

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

int main(void) {
    int a, b, c;
    int ans = 0;
    cin >> a >> b >> c;
    if (a == b && b == c) {
        if (a % 2)
            cout << 0 << endl;
        else
            cout << -1 << endl;
    }
    while (true) {
        if (!(a % 2) && !(b % 2) && !(c % 2)) {
            int ta = a / 2, tb = b / 2, tc = c / 2;
            a = tb + tc;
            b = tc + ta;
            c = ta + tb;
            ans++;
        }
        else
            break;
    }
    cout << ans << endl;
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User zohe
Language C++14 (GCC 5.4.1)
Score 0
Code Size 563 Byte
Status WA
Exec Time 2103 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
TLE × 1
AC × 12
WA × 1
TLE × 4
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 1 ms 256 KB
in10.txt WA 1 ms 256 KB
in11.txt TLE 2103 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 TLE 2103 ms 256 KB
sample1.txt AC 1 ms 256 KB
sample2.txt TLE 2103 ms 256 KB
sample3.txt AC 1 ms 256 KB