結果

問題 No.88 次はどっちだ
ユーザー 明智重蔵明智重蔵
提出日時 2015-11-03 13:24:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 2,474 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 111,660 KB
実行使用メモリ 26,844 KB
最終ジャッジ日時 2024-09-13 12:06:02
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,752 KB
testcase_01 AC 27 ms
26,588 KB
testcase_02 AC 26 ms
24,568 KB
testcase_03 AC 27 ms
24,624 KB
testcase_04 AC 26 ms
22,836 KB
testcase_05 AC 27 ms
26,708 KB
testcase_06 AC 27 ms
26,596 KB
testcase_07 AC 27 ms
26,612 KB
testcase_08 AC 27 ms
24,752 KB
testcase_09 AC 27 ms
26,844 KB
testcase_10 AC 28 ms
26,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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("oda");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("...wb...");
            WillReturn.Add("...bw...");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("........");
            //oda
            //一般的な初期配置です。黒から始まることに注意してください
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("yukiko");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("..bbb...");
            WillReturn.Add("...bw...");
            WillReturn.Add("........");
            WillReturn.Add("........");
            WillReturn.Add("........");
            //oda
            //初期配置から1枚置いた状態以外でこのような配置になることはありません
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("yukiko");
            WillReturn.Add("........");
            WillReturn.Add("....w...");
            WillReturn.Add("..wwww..");
            WillReturn.Add("..wbww..");
            WillReturn.Add("..bbbwb.");
            WillReturn.Add(".b.bb.w.");
            WillReturn.Add("........");
            WillReturn.Add("........");
            //yukiko
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string S = InputList[0];

        int StoneCnt = 0;
        foreach (string EachStr in InputList.Skip(1)) {
            foreach(char EachChar in EachStr){
                if (EachChar == 'b') StoneCnt++;
                if (EachChar == 'w') StoneCnt++;
            }
        }

        if (StoneCnt % 2 == 0) {
            Console.WriteLine(S);
        }
        else {
            if (S == "oda") Console.WriteLine("yukiko");
            if (S == "yukiko") Console.WriteLine("oda");
        }
    }
}
0