結果

問題 No.486 3 Straight Win(3連勝)
ユーザー phsplsphspls
提出日時 2020-03-28 14:33:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 106,324 KB
実行使用メモリ 26,708 KB
最終ジャッジ日時 2024-06-10 17:21:43
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,416 KB
testcase_01 AC 25 ms
26,708 KB
testcase_02 AC 23 ms
26,244 KB
testcase_03 AC 24 ms
26,200 KB
testcase_04 AC 24 ms
24,544 KB
testcase_05 AC 22 ms
24,160 KB
testcase_06 AC 23 ms
26,160 KB
testcase_07 AC 23 ms
22,068 KB
testcase_08 AC 23 ms
24,116 KB
testcase_09 AC 23 ms
23,984 KB
testcase_10 AC 23 ms
24,236 KB
testcase_11 AC 23 ms
24,496 KB
testcase_12 AC 23 ms
24,412 KB
testcase_13 AC 23 ms
26,292 KB
testcase_14 AC 23 ms
25,904 KB
testcase_15 AC 22 ms
24,156 KB
testcase_16 AC 23 ms
26,032 KB
testcase_17 AC 22 ms
24,112 KB
testcase_18 AC 24 ms
26,324 KB
testcase_19 AC 23 ms
21,944 KB
testcase_20 AC 24 ms
24,540 KB
testcase_21 AC 23 ms
26,324 KB
testcase_22 AC 23 ms
24,236 KB
testcase_23 AC 24 ms
26,044 KB
testcase_24 AC 24 ms
24,288 KB
testcase_25 AC 24 ms
24,420 KB
testcase_26 AC 24 ms
24,416 KB
testcase_27 AC 23 ms
24,252 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 P0486 {
    public static void Main() {
        var s = Console.ReadLine().Trim();
        var e = s.IndexOf("OOO");
        var w = s.IndexOf("XXX");
        e = e < 0 ? s.Length : e;
        w = w < 0 ? s.Length : w;
        if(e < w) {
            Console.WriteLine("East");
        } else if(e > w) {
            Console.WriteLine("West");
        } else {
            Console.WriteLine("NA");
        }
    }
}
0