結果

問題 No.486 3 Straight Win(3連勝)
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 16:10:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 3,544 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-26 04:22:37
合計ジャッジ時間 7,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,248 KB
testcase_01 AC 125 ms
41,004 KB
testcase_02 AC 124 ms
40,860 KB
testcase_03 AC 125 ms
41,000 KB
testcase_04 AC 126 ms
41,304 KB
testcase_05 AC 122 ms
40,940 KB
testcase_06 AC 125 ms
40,960 KB
testcase_07 AC 108 ms
41,136 KB
testcase_08 AC 122 ms
41,540 KB
testcase_09 AC 105 ms
40,996 KB
testcase_10 AC 124 ms
40,924 KB
testcase_11 AC 127 ms
40,948 KB
testcase_12 AC 122 ms
40,968 KB
testcase_13 AC 123 ms
41,272 KB
testcase_14 AC 119 ms
41,116 KB
testcase_15 AC 122 ms
41,312 KB
testcase_16 AC 107 ms
40,244 KB
testcase_17 AC 120 ms
41,104 KB
testcase_18 AC 120 ms
41,104 KB
testcase_19 AC 122 ms
40,968 KB
testcase_20 AC 110 ms
39,820 KB
testcase_21 AC 125 ms
41,264 KB
testcase_22 AC 124 ms
41,324 KB
testcase_23 AC 124 ms
40,972 KB
testcase_24 AC 124 ms
41,248 KB
testcase_25 AC 110 ms
40,036 KB
testcase_26 AC 125 ms
41,188 KB
testcase_27 AC 111 ms
40,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class EWgame {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		char[] c = new char[str.length()];
		for(int i = 0;i<str.length();i++){
			c[i] = str.charAt(i);
		}
		
		int east = 0,west = 0;
		for(int i = 0;i < str.length();i++){
			if(c[i] == 'O'){
				east++;
				west = 0;
				if(east >= 3){
					System.out.println("East");
					break;
				}
			}else if(c[i] == 'X'){
				east = 0;
				west++;
				if(west >= 3){
					System.out.println("West");
					break;
				}
			}
		}
		if(east<3 && west < 3){
			System.out.println("NA");
		}

	}

}
0