結果

問題 No.486 3 Straight Win(3連勝)
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-13 08:55:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 44,488 KB
最終ジャッジ日時 2024-06-26 04:18:53
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,864 KB
testcase_01 AC 125 ms
40,820 KB
testcase_02 AC 129 ms
41,088 KB
testcase_03 AC 130 ms
41,140 KB
testcase_04 AC 132 ms
40,996 KB
testcase_05 AC 128 ms
41,136 KB
testcase_06 AC 128 ms
41,264 KB
testcase_07 AC 126 ms
40,952 KB
testcase_08 AC 125 ms
41,312 KB
testcase_09 AC 124 ms
40,992 KB
testcase_10 AC 130 ms
41,272 KB
testcase_11 AC 130 ms
41,072 KB
testcase_12 AC 128 ms
40,980 KB
testcase_13 AC 131 ms
41,304 KB
testcase_14 AC 126 ms
41,244 KB
testcase_15 AC 127 ms
41,088 KB
testcase_16 AC 129 ms
41,364 KB
testcase_17 AC 127 ms
41,256 KB
testcase_18 AC 127 ms
40,984 KB
testcase_19 AC 127 ms
41,088 KB
testcase_20 AC 127 ms
44,488 KB
testcase_21 AC 129 ms
41,528 KB
testcase_22 AC 116 ms
39,984 KB
testcase_23 AC 128 ms
41,128 KB
testcase_24 AC 128 ms
41,080 KB
testcase_25 AC 130 ms
41,500 KB
testcase_26 AC 128 ms
41,256 KB
testcase_27 AC 127 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        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;
                                if (E >= 3) {
                                        System.out.println("East");
                                        return;
                                }
                        } else {
                                W++;
                                E=0;
                                if (W >= 3) {
                                        System.out.println("West");
                                        return;
                                }
                        }
                }
                System.out.println("NA");
        }
}
0