結果

問題 No.486 3 Straight Win(3連勝)
ユーザー tsunabittsunabit
提出日時 2018-06-30 17:53:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 3,753 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-07-01 00:59:05
合計ジャッジ時間 8,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,056 KB
testcase_01 AC 122 ms
53,948 KB
testcase_02 AC 121 ms
54,224 KB
testcase_03 AC 122 ms
54,104 KB
testcase_04 AC 124 ms
53,816 KB
testcase_05 AC 121 ms
54,016 KB
testcase_06 AC 128 ms
54,048 KB
testcase_07 AC 127 ms
54,288 KB
testcase_08 AC 125 ms
53,816 KB
testcase_09 AC 126 ms
54,128 KB
testcase_10 AC 126 ms
54,036 KB
testcase_11 AC 125 ms
54,180 KB
testcase_12 AC 126 ms
53,756 KB
testcase_13 AC 129 ms
53,980 KB
testcase_14 AC 124 ms
54,144 KB
testcase_15 AC 122 ms
54,136 KB
testcase_16 AC 123 ms
54,124 KB
testcase_17 AC 124 ms
53,948 KB
testcase_18 AC 122 ms
54,092 KB
testcase_19 AC 122 ms
53,836 KB
testcase_20 AC 125 ms
54,068 KB
testcase_21 AC 122 ms
53,932 KB
testcase_22 AC 121 ms
53,788 KB
testcase_23 AC 126 ms
54,188 KB
testcase_24 AC 123 ms
53,960 KB
testcase_25 AC 125 ms
54,236 KB
testcase_26 AC 124 ms
53,956 KB
testcase_27 AC 125 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;

public class No486 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		char temp = 'R';
		int count = 0;
		String s = sc.next();
		for(int i = 0; i < s.length(); i++) {
			if(temp == s.charAt(i)) {
					count++;
			}else {
					temp = s.charAt(i);
					count = 1;
			}
			if(count == 3) {
					System.out.println(temp == 'O' ? "East" : "West");
					return;
			}
		}
		System.out.println("NA");

	}
}
0