結果

問題 No.486 3 Straight Win(3連勝)
ユーザー AoiroFukurouAoiroFukurou
提出日時 2017-02-26 13:49:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 4,259 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-06-26 04:08:59
合計ジャッジ時間 8,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,044 KB
testcase_01 AC 132 ms
54,284 KB
testcase_02 AC 134 ms
54,184 KB
testcase_03 AC 132 ms
54,064 KB
testcase_04 AC 132 ms
54,032 KB
testcase_05 AC 132 ms
54,144 KB
testcase_06 AC 138 ms
54,056 KB
testcase_07 AC 134 ms
53,924 KB
testcase_08 AC 134 ms
53,908 KB
testcase_09 AC 133 ms
53,896 KB
testcase_10 AC 131 ms
54,032 KB
testcase_11 AC 131 ms
54,104 KB
testcase_12 AC 135 ms
53,840 KB
testcase_13 AC 137 ms
53,812 KB
testcase_14 AC 136 ms
54,072 KB
testcase_15 AC 133 ms
53,876 KB
testcase_16 AC 132 ms
54,020 KB
testcase_17 AC 132 ms
54,160 KB
testcase_18 AC 130 ms
53,844 KB
testcase_19 AC 135 ms
53,968 KB
testcase_20 AC 134 ms
53,944 KB
testcase_21 AC 135 ms
53,936 KB
testcase_22 AC 133 ms
53,984 KB
testcase_23 AC 134 ms
53,936 KB
testcase_24 AC 134 ms
53,848 KB
testcase_25 AC 132 ms
53,996 KB
testcase_26 AC 137 ms
53,848 KB
testcase_27 AC 133 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_486 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		int O = 0;
		int X = 0;
		for (int i = 1; i <= s.length(); i++) {
			String s2 = s.substring(i - 1, i);
			if (s2.equals("O")) {
				O++;
				X = 0;
			} else if (s2.equals("X")) {
				X++;
				O = 0;
			}
			if(O >= 3 || X >= 3){
				break;
			}
		}
		if (O == 3) {
			System.out.println("East");
		} else if (X == 3) {
			System.out.println("West");
		} else {
			System.out.println("NA");
		}
	}
}
0