結果

問題 No.486 3 Straight Win(3連勝)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-16 23:47:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 73,536 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-28 13:23:56
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,884 KB
testcase_01 AC 123 ms
40,932 KB
testcase_02 AC 123 ms
40,820 KB
testcase_03 AC 126 ms
41,216 KB
testcase_04 AC 111 ms
39,324 KB
testcase_05 AC 129 ms
40,980 KB
testcase_06 AC 125 ms
41,416 KB
testcase_07 AC 127 ms
41,008 KB
testcase_08 AC 124 ms
41,044 KB
testcase_09 AC 126 ms
41,200 KB
testcase_10 AC 127 ms
40,736 KB
testcase_11 AC 129 ms
40,996 KB
testcase_12 AC 108 ms
40,160 KB
testcase_13 AC 125 ms
41,200 KB
testcase_14 AC 126 ms
41,168 KB
testcase_15 AC 120 ms
40,924 KB
testcase_16 AC 127 ms
41,164 KB
testcase_17 AC 126 ms
40,992 KB
testcase_18 AC 129 ms
40,880 KB
testcase_19 AC 128 ms
40,928 KB
testcase_20 AC 114 ms
39,856 KB
testcase_21 AC 131 ms
40,880 KB
testcase_22 AC 125 ms
40,988 KB
testcase_23 AC 111 ms
40,160 KB
testcase_24 AC 117 ms
40,160 KB
testcase_25 AC 109 ms
39,984 KB
testcase_26 AC 124 ms
41,064 KB
testcase_27 AC 126 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        String ans = "NA";

        if(s.length() >= 3) {
            for(int i=1; i<s.length()-1; i++) {
                char c1 = s.charAt(i-1);
                char c2 = s.charAt(i);
                char c3 = s.charAt(i+1);
                if(c1 == 'O' && c2 == 'O' && c3 == 'O') {
                    ans = "East";
                    break;
                }
                if(c1 == 'X' && c2 == 'X' && c3 == 'X') {
                    ans = "West";
                    break;
                }
            }
        }

        System.out.println(ans);
    }
}
0