結果

問題 No.88 次はどっちだ
ユーザー 明智重蔵明智重蔵
提出日時 2015-11-03 13:24:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 2,474 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 108,700 KB
実行使用メモリ 23,472 KB
最終ジャッジ日時 2023-10-11 13:20:58
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
21,496 KB
testcase_01 AC 55 ms
21,416 KB
testcase_02 AC 55 ms
21,508 KB
testcase_03 AC 55 ms
23,464 KB
testcase_04 AC 54 ms
21,552 KB
testcase_05 AC 54 ms
21,464 KB
testcase_06 AC 54 ms
21,452 KB
testcase_07 AC 55 ms
23,472 KB
testcase_08 AC 55 ms
21,580 KB
testcase_09 AC 54 ms
21,408 KB
testcase_10 AC 55 ms
21,400 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