トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

ABC-062-A Grouping

■■■問題■■■

すぬけ君は、1から12までの整数を下図のようにグループ分けしました。
整数 x, y (1 <= x < y <= 12) が与えられるので、
x,yが同一のグループに属しているか判定してください。


■■■入力■■■

x y

●x,yは整数である
●1 <= x < y <= 12

■■■出力■■■

x,yが同一のグループに属しているならばYesを、そうでなければNoを出力せよ。


C#のソース

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

class Program
{
    static string InputPattern = "Input1";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("1 3");
            //Yes
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2 4");
            //No
        }
        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(A => int.Parse(A)).ToArray();
        int X = wkArr[0];
        int Y = wkArr[1];

        int[] Group1Arr = new int[] { 1, 3, 5, 7, 8, 10, 12 };
        int[] Group2Arr = new int[] { 4, 6, 9, 11 };
        int[] Group3Arr = new int[] { 2 };

        if (Group1Arr.Contains(X) && Group1Arr.Contains(Y)
         || Group2Arr.Contains(X) && Group2Arr.Contains(Y)
         || Group3Arr.Contains(X) && Group3Arr.Contains(Y)) {
            Console.WriteLine("Yes");
        }
        else Console.WriteLine("No");
    }
}


解説

Contains拡張メソッドで判定してます。