結果

問題 No.486 3 Straight Win(3連勝)
ユーザー swdamdrswdamdr
提出日時 2017-02-27 13:19:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 108,280 KB
実行使用メモリ 26,288 KB
最終ジャッジ日時 2024-06-26 04:11:14
合計ジャッジ時間 2,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,300 KB
testcase_01 AC 24 ms
25,284 KB
testcase_02 AC 23 ms
23,232 KB
testcase_03 AC 45 ms
26,288 KB
testcase_04 AC 27 ms
24,152 KB
testcase_05 AC 28 ms
24,112 KB
testcase_06 AC 24 ms
23,344 KB
testcase_07 AC 29 ms
24,404 KB
testcase_08 AC 24 ms
23,372 KB
testcase_09 AC 28 ms
24,284 KB
testcase_10 AC 28 ms
26,156 KB
testcase_11 AC 28 ms
22,320 KB
testcase_12 AC 29 ms
24,280 KB
testcase_13 AC 24 ms
23,384 KB
testcase_14 AC 23 ms
21,300 KB
testcase_15 AC 23 ms
23,344 KB
testcase_16 AC 28 ms
24,284 KB
testcase_17 AC 23 ms
23,384 KB
testcase_18 AC 23 ms
23,600 KB
testcase_19 AC 23 ms
23,596 KB
testcase_20 AC 24 ms
25,292 KB
testcase_21 AC 23 ms
23,600 KB
testcase_22 AC 28 ms
24,024 KB
testcase_23 AC 28 ms
24,024 KB
testcase_24 AC 23 ms
23,384 KB
testcase_25 AC 24 ms
23,728 KB
testcase_26 AC 23 ms
23,236 KB
testcase_27 AC 24 ms
23,360 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;
using System.Collections.Generic;

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

        if (s.Contains("OOO"))
        {
            eFlg = 1;
        }

        if (s.Contains("XXX"))
        {
            wFlg = 1;
        }

        if (eFlg == 1 && wFlg == 1)
        {
            if (s.IndexOf("OOO") < s.IndexOf("XXX"))
            {
                ans = "East";
            }
            else
            {
                ans = "West";
            }
        }
        else if (eFlg == 1)
        {
            ans = "East";
        }
        else if (wFlg == 1)
        {
            ans = "West";
        }

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