結果

問題 No.486 3 Straight Win(3連勝)
ユーザー yagi2yagi2
提出日時 2017-04-14 10:39:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 41,908 KB
最終ジャッジ日時 2024-06-26 04:25:45
合計ジャッジ時間 6,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,144 KB
testcase_01 AC 117 ms
41,140 KB
testcase_02 AC 120 ms
41,228 KB
testcase_03 AC 124 ms
41,268 KB
testcase_04 AC 124 ms
41,436 KB
testcase_05 AC 123 ms
41,524 KB
testcase_06 AC 120 ms
41,368 KB
testcase_07 AC 121 ms
41,288 KB
testcase_08 AC 123 ms
41,220 KB
testcase_09 AC 108 ms
40,316 KB
testcase_10 AC 121 ms
41,064 KB
testcase_11 AC 125 ms
41,688 KB
testcase_12 AC 123 ms
41,084 KB
testcase_13 AC 122 ms
41,504 KB
testcase_14 AC 124 ms
41,432 KB
testcase_15 AC 122 ms
41,404 KB
testcase_16 AC 107 ms
40,116 KB
testcase_17 AC 122 ms
41,824 KB
testcase_18 AC 121 ms
41,108 KB
testcase_19 AC 122 ms
41,652 KB
testcase_20 AC 119 ms
41,380 KB
testcase_21 AC 124 ms
41,908 KB
testcase_22 AC 110 ms
40,152 KB
testcase_23 AC 109 ms
39,944 KB
testcase_24 AC 112 ms
39,936 KB
testcase_25 AC 124 ms
41,488 KB
testcase_26 AC 107 ms
39,776 KB
testcase_27 AC 124 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String S = sc.next() + "AA";

        if (S.length() < 5) {
            System.out.println("NA");
        } else {
            for (int i = 0; i < S.length() - 2; i++) {
                if (S.charAt(i) == 'O' && S.charAt(i + 1) == 'O' && S.charAt(i + 2) == 'O') {
                    System.out.println("East");
                    break;
                }
                if (S.charAt(i) == 'X' && S.charAt(i + 1) == 'X' && S.charAt(i + 2) == 'X') {
                    System.out.println("West");
                    break;
                }
                if (i == S.length() - 4) {
                    System.out.println("NA");
                    break;
                }
            }
        }
    }
}
0