結果

問題 No.486 3 Straight Win(3連勝)
ユーザー kano_townkano_town
提出日時 2017-02-24 22:30:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-06-26 04:01:10
合計ジャッジ時間 7,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,704 KB
testcase_01 AC 109 ms
52,876 KB
testcase_02 AC 124 ms
53,788 KB
testcase_03 AC 108 ms
52,948 KB
testcase_04 AC 121 ms
53,580 KB
testcase_05 AC 120 ms
53,816 KB
testcase_06 AC 123 ms
53,892 KB
testcase_07 AC 122 ms
53,964 KB
testcase_08 AC 122 ms
53,980 KB
testcase_09 AC 124 ms
53,696 KB
testcase_10 AC 123 ms
53,788 KB
testcase_11 AC 121 ms
52,520 KB
testcase_12 AC 121 ms
53,856 KB
testcase_13 AC 124 ms
54,020 KB
testcase_14 AC 121 ms
54,112 KB
testcase_15 AC 109 ms
52,984 KB
testcase_16 AC 120 ms
53,980 KB
testcase_17 AC 110 ms
54,128 KB
testcase_18 AC 122 ms
54,012 KB
testcase_19 AC 122 ms
53,992 KB
testcase_20 AC 121 ms
53,660 KB
testcase_21 AC 125 ms
53,816 KB
testcase_22 AC 124 ms
54,008 KB
testcase_23 AC 126 ms
53,980 KB
testcase_24 AC 126 ms
53,676 KB
testcase_25 AC 123 ms
53,792 KB
testcase_26 AC 110 ms
53,068 KB
testcase_27 AC 121 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder486 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        int e = 0, w = 0;
        for (int i = 0; i < s.length(); i++) {
            if (s.charAt(i) == 'O') {
                e++;
                w = 0;
            } else {
                w++;
                e = 0;
            }
            if (e == 3) {
                System.out.println("East");
                return;
            } else if (w == 3) {
                System.out.println("West");
                return;
            }
        }
        System.out.println("NA");

    }
}
0