結果

問題 No.486 3 Straight Win(3連勝)
ユーザー YOSHIYOSHI
提出日時 2021-03-16 23:35:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 50,344 KB
最終ジャッジ日時 2024-11-08 19:26:30
合計ジャッジ時間 5,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,480 KB
testcase_01 WA -
testcase_02 AC 55 ms
37,284 KB
testcase_03 AC 53 ms
36,756 KB
testcase_04 AC 53 ms
36,676 KB
testcase_05 AC 54 ms
37,000 KB
testcase_06 AC 53 ms
37,084 KB
testcase_07 AC 53 ms
36,456 KB
testcase_08 WA -
testcase_09 AC 54 ms
37,012 KB
testcase_10 AC 53 ms
36,976 KB
testcase_11 AC 54 ms
37,100 KB
testcase_12 AC 53 ms
36,548 KB
testcase_13 AC 52 ms
37,160 KB
testcase_14 AC 53 ms
37,016 KB
testcase_15 AC 53 ms
37,124 KB
testcase_16 AC 53 ms
36,752 KB
testcase_17 AC 53 ms
36,964 KB
testcase_18 AC 52 ms
37,156 KB
testcase_19 WA -
testcase_20 AC 53 ms
36,988 KB
testcase_21 AC 53 ms
36,540 KB
testcase_22 AC 54 ms
37,116 KB
testcase_23 AC 53 ms
36,712 KB
testcase_24 AC 53 ms
37,100 KB
testcase_25 AC 53 ms
36,900 KB
testcase_26 AC 53 ms
37,080 KB
testcase_27 AC 55 ms
36,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000486_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String s = br.readLine();
		int oi = s.indexOf("OOO");
		int xi = s.indexOf("XXX");
		if(oi == -1 && xi == -1) {
			System.out.println("NA");
		} else {
			if(oi == -1 || xi < oi) {
				System.out.println("West");
			} else {
				System.out.println("East");
			}
		}
	}
}
0