結果

問題 No.486 3 Straight Win(3連勝)
ユーザー bellbell
提出日時 2021-02-20 17:33:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-09-18 18:09:20
合計ジャッジ時間 5,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,124 KB
testcase_01 AC 113 ms
53,752 KB
testcase_02 AC 114 ms
54,008 KB
testcase_03 AC 114 ms
54,024 KB
testcase_04 AC 114 ms
54,100 KB
testcase_05 AC 112 ms
53,980 KB
testcase_06 AC 101 ms
53,872 KB
testcase_07 AC 111 ms
54,024 KB
testcase_08 AC 111 ms
53,880 KB
testcase_09 AC 108 ms
54,096 KB
testcase_10 AC 115 ms
53,912 KB
testcase_11 AC 117 ms
54,196 KB
testcase_12 AC 111 ms
54,096 KB
testcase_13 AC 108 ms
54,128 KB
testcase_14 AC 111 ms
54,020 KB
testcase_15 AC 111 ms
53,872 KB
testcase_16 AC 110 ms
53,880 KB
testcase_17 AC 100 ms
52,824 KB
testcase_18 AC 113 ms
54,072 KB
testcase_19 AC 111 ms
53,800 KB
testcase_20 AC 99 ms
52,904 KB
testcase_21 AC 99 ms
52,608 KB
testcase_22 AC 121 ms
53,932 KB
testcase_23 AC 111 ms
53,948 KB
testcase_24 AC 112 ms
53,932 KB
testcase_25 AC 111 ms
53,748 KB
testcase_26 AC 97 ms
52,540 KB
testcase_27 AC 107 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String [] s = sc.next().split("");
		sc.close();
		int countE = 0;
		int countW = 0;
		String result = "";
		for ( int i = 0; i < s.length; i++ ){
			if ( s[i].equals("O")){
				countE++;
				countW = 0;
			} else if ( s[i].equals("X")){
				countW++;
				countE = 0;
			}
			if( countE == 3 ) {
				result = "East";
				break;
			} else if( countW == 3){
				result = "West";
				break;
			} else {
				result = "NA";}

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