結果
問題 | No.88 次はどっちだ |
ユーザー | No |
提出日時 | 2015-04-20 23:40:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,070 bytes |
コンパイル時間 | 698 ms |
コンパイル使用メモリ | 103,040 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-07-04 18:55:25 |
合計ジャッジ時間 | 1,413 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
17,152 KB |
testcase_01 | AC | 17 ms
17,280 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 19 ms
17,280 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 20 ms
17,280 KB |
testcase_10 | AC | 19 ms
17,280 KB |
コンパイルメッセージ
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; using System.Text; using System.Threading.Tasks; namespace ForYukicoder { class Program { static void Main(string[] args) { string S = Console.ReadLine(); string[] B = new string[8]; for (int i = 0; i < 8; i++) { B[i] = Console.ReadLine(); } //----------------- int white = 0; int black = 0; foreach (var row in B) { foreach (var column in row) { if (column == 'w') white++; else if (column == 'b') black++; } } string str; if (white == black) { //黒の順番 str = S; } else { //白の順番 str = (S == "oda") ? "yukiko" : "oda"; } Console.WriteLine(str); } } }