結果

問題 No.486 3 Straight Win(3連勝)
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2017-02-28 12:11:50
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 111,100 KB
実行使用メモリ 25,564 KB
最終ジャッジ日時 2024-06-11 22:50:15
合計ジャッジ時間 4,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,392 KB
testcase_01 AC 22 ms
25,432 KB
testcase_02 AC 22 ms
25,296 KB
testcase_03 AC 23 ms
23,236 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 23 ms
25,412 KB
testcase_07 AC 23 ms
25,396 KB
testcase_08 AC 23 ms
25,140 KB
testcase_09 WA -
testcase_10 AC 23 ms
23,524 KB
testcase_11 AC 22 ms
21,432 KB
testcase_12 WA -
testcase_13 AC 22 ms
21,424 KB
testcase_14 AC 23 ms
23,344 KB
testcase_15 WA -
testcase_16 AC 22 ms
23,104 KB
testcase_17 WA -
testcase_18 AC 23 ms
23,228 KB
testcase_19 AC 22 ms
23,392 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 22 ms
23,344 KB
testcase_23 AC 22 ms
23,260 KB
testcase_24 WA -
testcase_25 AC 21 ms
21,428 KB
testcase_26 AC 22 ms
23,260 KB
testcase_27 AC 22 ms
25,308 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.Linq;

public class Test
{
	public static void Main()
	{
		var S = Console.ReadLine();
		int east = 0, west = 0;
		for (int i = 0; i < S.Length; i++)
		{
			if (S[i] == 'O')
			{
				if (++east == 3)
				{
					Console.WriteLine("East");
					return;
				}
			}
			else if (++west == 3)
			{
				Console.WriteLine("West");
				return;
			}
		}
		Console.WriteLine("NA");
	}
}
0