Submission #1265749


Source Code Expand

#include <iostream>
#include <algorithm>
#include <string.h>

using namespace std;

#define pb push_back
#define mp make_pair
#define ll long long
#define ull unsigned ll
#define db double
#define INF 0x3f3f3f3f
#define MOD 1000000007
#define PII pair<int, int>

ll a,b,c;

int main() {
    scanf("%lld%lld%lld",&a,&b,&c);
    if ((a%2!=0)||(b%2!=0)||(c%2!=0)) {
        printf("0\n");
        return 0;
    }
    if (a==b&&b==c) {
        printf("-1\n");
        return 0;
    }
    int cnt=0;
    while (a%2==0&&b%2==0&&c%2==0) {
        cnt++;
        ll aa=(b+c)/2;
        ll bb=(a+c)/2;
        ll cc=(a+b)/2;
        a=aa;
        b=bb;
        c=cc;
    }
    printf("%d\n",cnt);
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User oos1111
Language C++14 (GCC 5.4.1)
Score 300
Code Size 731 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:20:35: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld%lld%lld",&a,&b,&c);
                                   ^

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 1 ms 256 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