結果

問題 No.486 3 Straight Win(3連勝)
ユーザー GrenacheGrenache
提出日時 2017-02-24 22:25:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 75,348 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-26 03:55:13
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,916 KB
testcase_01 AC 128 ms
54,180 KB
testcase_02 AC 131 ms
53,804 KB
testcase_03 AC 135 ms
53,900 KB
testcase_04 AC 135 ms
53,956 KB
testcase_05 AC 132 ms
53,996 KB
testcase_06 AC 133 ms
54,024 KB
testcase_07 AC 133 ms
54,000 KB
testcase_08 AC 131 ms
53,992 KB
testcase_09 AC 134 ms
54,000 KB
testcase_10 AC 133 ms
54,116 KB
testcase_11 AC 135 ms
54,124 KB
testcase_12 AC 134 ms
53,788 KB
testcase_13 AC 134 ms
53,852 KB
testcase_14 AC 134 ms
54,224 KB
testcase_15 AC 132 ms
54,036 KB
testcase_16 AC 134 ms
54,180 KB
testcase_17 AC 135 ms
54,044 KB
testcase_18 AC 133 ms
53,968 KB
testcase_19 AC 133 ms
53,928 KB
testcase_20 AC 138 ms
54,068 KB
testcase_21 AC 134 ms
53,888 KB
testcase_22 AC 138 ms
54,116 KB
testcase_23 AC 139 ms
54,032 KB
testcase_24 AC 132 ms
53,960 KB
testcase_25 AC 140 ms
53,980 KB
testcase_26 AC 133 ms
54,184 KB
testcase_27 AC 131 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder486 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();

		int east = 0;
		int west = 0;

		for (char c : s) {
			if (c == 'O') {
				east++;
				west = 0;
			} else {
				west++;
				east = 0;
			}

			if (west >= 3) {
				pr.println("West");
				return;
			} else if (east >= 3) {
				pr.println("East");
				return;
			}
		}

		pr.println("NA");
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0