結果

問題 No.88 次はどっちだ
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 22:36:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 2,475 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 112,268 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-10 22:37:01
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,560 KB
testcase_01 AC 26 ms
18,432 KB
testcase_02 AC 26 ms
18,560 KB
testcase_03 AC 25 ms
18,816 KB
testcase_04 AC 26 ms
18,432 KB
testcase_05 AC 26 ms
18,560 KB
testcase_06 AC 26 ms
18,560 KB
testcase_07 AC 26 ms
18,688 KB
testcase_08 AC 25 ms
18,688 KB
testcase_09 AC 26 ms
18,432 KB
testcase_10 AC 26 ms
18,688 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