結果

問題 No.486 3 Straight Win(3連勝)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-03-20 23:02:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-07-05 04:34:51
合計ジャッジ時間 6,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 126 ms
54,112 KB
testcase_04 AC 123 ms
54,012 KB
testcase_05 AC 120 ms
53,860 KB
testcase_06 WA -
testcase_07 AC 119 ms
53,796 KB
testcase_08 WA -
testcase_09 AC 122 ms
54,040 KB
testcase_10 AC 128 ms
54,072 KB
testcase_11 AC 125 ms
53,928 KB
testcase_12 AC 120 ms
54,020 KB
testcase_13 WA -
testcase_14 AC 110 ms
52,972 KB
testcase_15 WA -
testcase_16 AC 125 ms
53,860 KB
testcase_17 AC 127 ms
54,004 KB
testcase_18 AC 128 ms
54,036 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 125 ms
54,048 KB
testcase_22 AC 120 ms
53,956 KB
testcase_23 AC 126 ms
53,944 KB
testcase_24 AC 126 ms
54,116 KB
testcase_25 AC 121 ms
53,800 KB
testcase_26 AC 120 ms
53,860 KB
testcase_27 AC 121 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        String line = stdin.nextLine();
        
        int east = line.indexOf("OOO");
        int west = line.indexOf("XXX");
        
        if (east == -1 && west == -1) {
            System.out.println("NA");
        } else if (east < west) {
            System.out.println("East");
        } else {
            System.out.println("West");
        }
    }
}
0