結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
53,932 KB
testcase_02 WA -
testcase_03 AC 129 ms
53,928 KB
testcase_04 AC 130 ms
53,776 KB
testcase_05 AC 129 ms
54,188 KB
testcase_06 WA -
testcase_07 AC 134 ms
54,060 KB
testcase_08 AC 132 ms
53,876 KB
testcase_09 AC 131 ms
54,084 KB
testcase_10 AC 130 ms
53,848 KB
testcase_11 AC 130 ms
53,980 KB
testcase_12 AC 128 ms
54,012 KB
testcase_13 WA -
testcase_14 AC 132 ms
53,636 KB
testcase_15 WA -
testcase_16 AC 130 ms
53,880 KB
testcase_17 AC 129 ms
54,124 KB
testcase_18 AC 131 ms
53,848 KB
testcase_19 AC 131 ms
53,920 KB
testcase_20 WA -
testcase_21 AC 131 ms
53,844 KB
testcase_22 AC 137 ms
53,900 KB
testcase_23 AC 134 ms
53,912 KB
testcase_24 AC 133 ms
53,868 KB
testcase_25 AC 131 ms
53,944 KB
testcase_26 AC 131 ms
53,636 KB
testcase_27 AC 132 ms
53,668 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 (west == -1 || east < west) {
            System.out.println("East");
        } else {
            System.out.println("West");
        }
    }
}
0