Submission #2208607


Source Code Expand

// ------------------------------------
// Date:2018/ 3/15
// Problem:AGC 014 CookieExchanges a.cpp
//
// ------------------------------------

#include <bits/stdc++.h>

using namespace std;

#define EACH(i,a) for (auto&& i : a)
#define FOR(i,a,b) for(int i=(int)a;i<(int)b;++i)
#define RFOR(i,a,b) for(int i=(int)b-1;i>=(int)a;--i)
#define REP(i,n) FOR(i,0,n)
#define RREP(i,n) RFOR(i,0,n)
#define ALL(a) (a).begin(),(a).end()
#define debug(x) cerr << #x << ":" << x << endl

typedef long long ll;

static const int MOD = 1000000007;

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

  int a, b, c;
  cin >> a >> b >> c;
  int tmp = 2;
  int ans = 0;
  int tmpA, tmpB, tmpC;
  if (a == b and b == c) {
    cout << -1 << endl;
    return 0;
  } else {
    if (not(a % 2 == 0 and b % 2 == 0 and c % 2 == 0)) {
      cout << ans << endl;
      return 0;
    }
    while(true) {
      tmpA = b + c;
      tmpB = a + c;
      tmpC = a + b;
      if (not(tmpA % tmp == 0 and tmpB % tmp == 0 and tmpC % tmp == 0)) break;
      a = tmpA / tmp;
      b = tmpB / tmp;
      c = tmpC / tmp;
      tmp <<= 1;
      ans++;
    }
  }
  cout << ans + 1 << endl;
  
  return 0;
}

Submission Info

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

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
WA × 1
AC × 8
WA × 9
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 WA 1 ms 256 KB
in10.txt WA 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 WA 1 ms 256 KB
in5.txt WA 1 ms 256 KB
in6.txt WA 1 ms 256 KB
in7.txt WA 1 ms 256 KB
in8.txt WA 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 WA 1 ms 256 KB