結果

問題 No.486 3 Straight Win(3連勝)
ユーザー yamax3232yamax3232
提出日時 2018-03-16 13:47:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-26 04:40:18
合計ジャッジ時間 6,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,824 KB
testcase_01 AC 116 ms
39,976 KB
testcase_02 AC 122 ms
41,268 KB
testcase_03 AC 123 ms
41,192 KB
testcase_04 AC 109 ms
40,000 KB
testcase_05 AC 122 ms
41,404 KB
testcase_06 AC 123 ms
41,176 KB
testcase_07 AC 115 ms
40,188 KB
testcase_08 AC 121 ms
40,980 KB
testcase_09 AC 121 ms
40,984 KB
testcase_10 AC 123 ms
41,292 KB
testcase_11 AC 106 ms
40,348 KB
testcase_12 AC 108 ms
40,084 KB
testcase_13 AC 110 ms
39,996 KB
testcase_14 AC 119 ms
40,972 KB
testcase_15 AC 119 ms
41,176 KB
testcase_16 AC 118 ms
41,160 KB
testcase_17 AC 121 ms
41,448 KB
testcase_18 AC 119 ms
41,060 KB
testcase_19 AC 119 ms
41,180 KB
testcase_20 AC 124 ms
41,368 KB
testcase_21 AC 123 ms
41,184 KB
testcase_22 AC 118 ms
41,056 KB
testcase_23 AC 122 ms
41,088 KB
testcase_24 AC 108 ms
40,248 KB
testcase_25 AC 114 ms
39,836 KB
testcase_26 AC 119 ms
41,192 KB
testcase_27 AC 121 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		String s=kb.nextLine();
		int w=0,e=0;
		for(int i=0;i<s.length();i++){
			if(i+2<s.length()){
				if(s.charAt(i)=='O'&&
						s.charAt(i+1)=='O'&&
						s.charAt(i+2)=='O'){
					e++;
					break;
				}if(s.charAt(i)=='X'&&
						s.charAt(i+1)=='X'&&
						s.charAt(i+2)=='X'){
					w++;
					break;
				}
			}
		}
		if(e==1){
			System.out.println("East");
		}else if(w==1){
			System.out.println("West");
		}else{
			System.out.println("NA");
		}
	}

}
0