Submission #4064414


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
class Scanner //標準入力
{
    string[] s;
    int i;

    char[] cs = new char[] { ' ' };

    public Scanner() {
        s = new string[0];
        i = 0;
    }

    public string next() {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        if (s.Length == 0) return next();
        i = 0;
        return s[i++];
    }

    public int Int() {
        return int.Parse(next());
    }
    public int[] ArrayInt(int N, int add = 0) {
        int[] Array = new int[N];
        for (int i = 0; i < N; i++) {
            Array[i] = Int() + add;
        }
        return Array;
    }

    public long Long() {
        return long.Parse(next());
    }

    public long[] ArrayLong(int N, long add = 0) {
        long[] Array = new long[N];
        for (int i = 0; i < N; i++) {
            Array[i] = Long() + add;
        }
        return Array;
    }
}
class Program {
    static Scanner cin = new Scanner();
    static void Main(string[] args) {
        long A = cin.Long();
        long B = cin.Long();
        long C = cin.Long();

        int cnt = 0;
        if (A % 2 == 0 && B % 2 == 0 && C % 2 == 0 && A == C && B == C) Console.WriteLine(-1);
        else {
            while (true) {
                long tmpa = A, tmpb = B, tmpc = C;
                if (tmpa % 2 != 0 || tmpb % 2 != 0 || tmpc % 2 != 0) break;
                A = tmpb / 2 + tmpc / 2;
                B = tmpc / 2 + tmpa / 2;
                C = tmpa / 2 + tmpb / 2;
                cnt++;
            }
            Console.WriteLine(cnt);
        }
        Console.ReadLine();
    }
}

Submission Info

Submission Time
Task A - Cookie Exchanges
User Mikoshi
Language C# (Mono 4.6.2.0)
Score 300
Code Size 1850 Byte
Status AC
Exec Time 24 ms
Memory 13140 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 22 ms 9044 KB
in10.txt AC 22 ms 9044 KB
in11.txt AC 23 ms 11092 KB
in2.txt AC 22 ms 9044 KB
in3.txt AC 22 ms 11092 KB
in4.txt AC 22 ms 9044 KB
in5.txt AC 21 ms 9044 KB
in6.txt AC 22 ms 11092 KB
in7.txt AC 22 ms 9172 KB
in8.txt AC 21 ms 9044 KB
in9.txt AC 22 ms 11092 KB
sample1.txt AC 24 ms 11092 KB
sample2.txt AC 22 ms 11092 KB
sample3.txt AC 23 ms 13140 KB