結果

問題 No.486 3 Straight Win(3連勝)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:47:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 55,904 KB
最終ジャッジ日時 2024-09-13 11:08:39
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 129 ms
53,892 KB
testcase_04 AC 127 ms
53,840 KB
testcase_05 AC 128 ms
54,124 KB
testcase_06 AC 127 ms
53,820 KB
testcase_07 AC 125 ms
54,160 KB
testcase_08 AC 127 ms
54,052 KB
testcase_09 AC 129 ms
53,988 KB
testcase_10 AC 129 ms
53,744 KB
testcase_11 AC 127 ms
53,884 KB
testcase_12 AC 114 ms
52,944 KB
testcase_13 AC 125 ms
53,900 KB
testcase_14 AC 127 ms
54,080 KB
testcase_15 AC 127 ms
54,072 KB
testcase_16 AC 130 ms
53,860 KB
testcase_17 AC 128 ms
53,700 KB
testcase_18 AC 127 ms
53,836 KB
testcase_19 AC 127 ms
53,684 KB
testcase_20 AC 125 ms
53,884 KB
testcase_21 AC 126 ms
53,960 KB
testcase_22 AC 128 ms
53,888 KB
testcase_23 AC 131 ms
54,072 KB
testcase_24 AC 128 ms
53,768 KB
testcase_25 AC 126 ms
54,008 KB
testcase_26 AC 126 ms
53,960 KB
testcase_27 AC 125 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		//x=West o=East
		int w = s.indexOf("XXX");
		int o = s.indexOf("OOO");
		if (w==-1 && o==-1) System.out.println("NA");
		else if (w==-1 && o>0) System.out.println("East");
		else if (w>0 && o==-1) System.out.println("West");
		else System.out.println(w<o?"West":"East");
	}
}
0