結果

問題 No.486 3 Straight Win(3連勝)
ユーザー swdamdr
提出日時 2017-02-27 13:11:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 106,556 KB
実行使用メモリ 27,716 KB
最終ジャッジ日時 2024-06-11 19:20:56
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22 WA * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        string s = Console.ReadLine();
        string ans = "NA";

        if (s.Contains("OOO"))
        {
            ans = "East";
        }
        else if (s.Contains("XXX"))
        {
            ans = "West";
        }

        Console.WriteLine(ans);
        Console.Read();
    }
}
0