結果

問題 No.486 3 Straight Win(3連勝)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:48:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-13 11:08:46
合計ジャッジ時間 6,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,816 KB
testcase_01 AC 127 ms
54,116 KB
testcase_02 AC 126 ms
53,808 KB
testcase_03 AC 128 ms
54,104 KB
testcase_04 AC 126 ms
53,720 KB
testcase_05 AC 127 ms
54,292 KB
testcase_06 AC 126 ms
53,760 KB
testcase_07 AC 126 ms
53,868 KB
testcase_08 AC 127 ms
54,124 KB
testcase_09 AC 125 ms
54,220 KB
testcase_10 AC 126 ms
53,844 KB
testcase_11 AC 127 ms
53,924 KB
testcase_12 AC 127 ms
53,840 KB
testcase_13 AC 126 ms
53,968 KB
testcase_14 AC 126 ms
53,932 KB
testcase_15 AC 127 ms
53,704 KB
testcase_16 AC 126 ms
53,804 KB
testcase_17 AC 126 ms
53,940 KB
testcase_18 AC 128 ms
54,036 KB
testcase_19 AC 126 ms
53,692 KB
testcase_20 AC 128 ms
53,868 KB
testcase_21 AC 127 ms
53,968 KB
testcase_22 AC 129 ms
54,028 KB
testcase_23 AC 129 ms
53,980 KB
testcase_24 AC 128 ms
53,972 KB
testcase_25 AC 125 ms
53,788 KB
testcase_26 AC 123 ms
54,092 KB
testcase_27 AC 125 ms
54,064 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");
//		System.out.println(w+":"+o);
		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