結果

問題 No.486 3 Straight Win(3連勝)
ユーザー HEGO55HEGO55
提出日時 2017-05-10 16:29:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-09-15 07:09:32
合計ジャッジ時間 6,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,676 KB
testcase_01 AC 122 ms
40,788 KB
testcase_02 AC 107 ms
39,740 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
41,092 KB
testcase_06 AC 121 ms
41,044 KB
testcase_07 WA -
testcase_08 AC 120 ms
40,960 KB
testcase_09 WA -
testcase_10 AC 125 ms
40,816 KB
testcase_11 AC 122 ms
40,804 KB
testcase_12 WA -
testcase_13 AC 121 ms
41,028 KB
testcase_14 AC 110 ms
39,928 KB
testcase_15 AC 122 ms
40,952 KB
testcase_16 AC 108 ms
39,856 KB
testcase_17 AC 110 ms
39,512 KB
testcase_18 AC 113 ms
40,456 KB
testcase_19 AC 120 ms
40,832 KB
testcase_20 AC 121 ms
40,616 KB
testcase_21 AC 121 ms
40,572 KB
testcase_22 AC 123 ms
40,844 KB
testcase_23 WA -
testcase_24 AC 124 ms
40,688 KB
testcase_25 AC 110 ms
39,420 KB
testcase_26 AC 122 ms
40,444 KB
testcase_27 AC 121 ms
40,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test33{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		
		if(str.indexOf("OOO") != -1){
			System.out.println("East");
		}else if(str.indexOf("XXX") != -1){
			System.out.println("West");
		}else{
			System.out.println("NA");
		}
	}
}
0