結果

問題 No.486 3 Straight Win(3連勝)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 14:40:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-06-26 04:38:36
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,148 KB
testcase_01 AC 122 ms
41,100 KB
testcase_02 AC 119 ms
40,972 KB
testcase_03 AC 118 ms
41,140 KB
testcase_04 AC 116 ms
41,396 KB
testcase_05 AC 125 ms
41,052 KB
testcase_06 AC 120 ms
41,148 KB
testcase_07 AC 120 ms
41,296 KB
testcase_08 AC 118 ms
40,984 KB
testcase_09 AC 105 ms
40,264 KB
testcase_10 AC 120 ms
41,672 KB
testcase_11 AC 122 ms
41,092 KB
testcase_12 AC 124 ms
41,232 KB
testcase_13 AC 121 ms
41,424 KB
testcase_14 AC 119 ms
41,328 KB
testcase_15 AC 114 ms
40,244 KB
testcase_16 AC 122 ms
41,056 KB
testcase_17 AC 120 ms
41,256 KB
testcase_18 AC 122 ms
41,276 KB
testcase_19 AC 120 ms
41,276 KB
testcase_20 AC 126 ms
41,200 KB
testcase_21 AC 122 ms
41,080 KB
testcase_22 AC 108 ms
40,304 KB
testcase_23 AC 124 ms
41,100 KB
testcase_24 AC 124 ms
41,404 KB
testcase_25 AC 122 ms
41,268 KB
testcase_26 AC 121 ms
41,412 KB
testcase_27 AC 122 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int west = 0;
		int east = 0;
		boolean win = false;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)=='O') {east++; west = 0;}
			else {west++; east = 0;}
			if (west==3 || east==3) {win = true; break;}
		}
		
		if (win==true) {
			if (west==3) {System.out.println("West");}
			else if (east==3) {System.out.println("East");}
		}
		else {
			System.out.println("NA");
		}
	}
}
0