AtCoderのABC    次のABCの問題へ    前のABCの問題へ

ABC205-C POW


問題へのリンク


C#のソース

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("3 2 4");
            //&gt;
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("-7 7 2");
            //=
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("-8 6 3");
            //&lt;
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] wkArr = InputList[0].Split(' ').Select(pX => int.Parse(pX)).ToArray();
        int A = wkArr[0];
        int B = wkArr[1];
        int C = wkArr[2];

        if (C % 2 == 0) {
            A = Math.Abs(A);
            B = Math.Abs(B);
        }

        if (A < B) {
            Console.WriteLine("<");
        }
        if (A == B) {
            Console.WriteLine("=");
        }
        if (A > B) {
            Console.WriteLine(">");
        }
    }
}


解説

Cが偶数の時は、AとBの絶対値で比較し、
Cが奇数の時は、AとB値を比較してます。