結果

問題 No.486 3 Straight Win(3連勝)
ユーザー losiz17losiz17
提出日時 2017-04-21 17:11:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 3,124 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-06-26 04:26:26
合計ジャッジ時間 7,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,056 KB
testcase_01 AC 118 ms
54,052 KB
testcase_02 AC 120 ms
53,756 KB
testcase_03 AC 118 ms
53,852 KB
testcase_04 AC 121 ms
53,724 KB
testcase_05 AC 117 ms
53,912 KB
testcase_06 AC 117 ms
54,020 KB
testcase_07 AC 117 ms
53,928 KB
testcase_08 AC 117 ms
53,924 KB
testcase_09 AC 112 ms
52,784 KB
testcase_10 AC 120 ms
53,944 KB
testcase_11 AC 110 ms
53,032 KB
testcase_12 AC 128 ms
53,888 KB
testcase_13 AC 118 ms
54,072 KB
testcase_14 AC 121 ms
54,028 KB
testcase_15 AC 109 ms
52,848 KB
testcase_16 AC 122 ms
54,136 KB
testcase_17 AC 122 ms
53,904 KB
testcase_18 AC 120 ms
41,228 KB
testcase_19 AC 119 ms
41,168 KB
testcase_20 AC 120 ms
41,444 KB
testcase_21 AC 105 ms
40,048 KB
testcase_22 AC 116 ms
41,160 KB
testcase_23 AC 118 ms
41,136 KB
testcase_24 AC 118 ms
41,300 KB
testcase_25 AC 122 ms
41,372 KB
testcase_26 AC 125 ms
41,100 KB
testcase_27 AC 116 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Tatakai {
	
	public static void main(String args[]){
		
		Scanner sc = new Scanner(System.in);
		
		int west = 0;
		int east = 0;
		
		String str = sc.next();
		
		for(int i=0; i<str.length(); i++){
			if(str.charAt(i) == 'X'){
				east = 0;
				west++;
				if(west>=3){
					System.out.println("West");
					return;
				}
			}
			if(str.charAt(i) == 'O'){
				east++;
				west = 0;
				if(east>=3){
					System.out.println("East");
					return;
				}
			}
			
		}
		System.out.println("NA");
	}
}
0