結果

問題 No.486 3 Straight Win(3連勝)
ユーザー YamaKasaYamaKasa
提出日時 2018-05-06 17:23:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-06-28 02:10:26
合計ジャッジ時間 6,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,560 KB
testcase_01 AC 125 ms
41,388 KB
testcase_02 AC 127 ms
41,304 KB
testcase_03 AC 129 ms
41,212 KB
testcase_04 AC 127 ms
41,416 KB
testcase_05 AC 117 ms
40,804 KB
testcase_06 AC 126 ms
41,320 KB
testcase_07 AC 122 ms
40,484 KB
testcase_08 AC 127 ms
41,504 KB
testcase_09 AC 114 ms
40,488 KB
testcase_10 AC 130 ms
41,328 KB
testcase_11 AC 127 ms
41,556 KB
testcase_12 AC 128 ms
41,456 KB
testcase_13 AC 116 ms
40,788 KB
testcase_14 AC 106 ms
39,768 KB
testcase_15 AC 128 ms
41,464 KB
testcase_16 AC 129 ms
41,324 KB
testcase_17 AC 124 ms
41,072 KB
testcase_18 AC 124 ms
41,192 KB
testcase_19 AC 129 ms
41,288 KB
testcase_20 AC 119 ms
40,048 KB
testcase_21 AC 121 ms
41,400 KB
testcase_22 AC 120 ms
40,616 KB
testcase_23 AC 116 ms
40,024 KB
testcase_24 AC 124 ms
41,072 KB
testcase_25 AC 123 ms
41,040 KB
testcase_26 AC 123 ms
41,112 KB
testcase_27 AC 124 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int cnt1 = 0;
		int cnt2 = 0;
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(c == 'O') {
				cnt1 ++;
				cnt2 = 0;
			}else {
				cnt1 = 0;
				cnt2 ++;
			}
			if(cnt1 == 3) {
				System.out.println("East");
				System.exit(0);
			}else if(cnt2 == 3) {
				System.out.println("West");
				System.exit(0);
			}
		}
		System.out.println("NA");
	}
}
0