Submission #2377627


Source Code Expand

#include <iostream>
#include <climits>
#include <cmath>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <string>
#define INF_INT (INT_MAX / 2)
#define INF_LONG (LONG_MAX / 2)
//#define DEBUG true
#define DEBUG false
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);

  int a, b, c;
  cin >> a >> b >> c;

  if(a % 2 == 1 || b % 2 == 1 || c % 2 == 1){
    cout << 0 << endl;
    return 0;
  }

  if(a == b && b == c){
    cout << -1 << endl;
    return 0;
  }

  int count = 0;
  while(a % 2 == 0 && b % 2 == 0 && c % 2 == 0){
    int na = b / 2 + c / 2;
    int nb = a / 2 + c / 2;
    int nc = a / 2 + b / 2;
    a = na; b = nb; c = nc;
    ++count;
  }

  cout << count << endl;

  return 0;
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User rom
Language C++14 (Clang 3.8.0)
Score 300
Code Size 817 Byte
Status AC
Exec Time 1 ms
Memory 256 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 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