結果
| 問題 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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");
}
}
}
明智重蔵