結果

問題 No.486 3 Straight Win(3連勝)
ユーザー fal_rndfal_rnd
提出日時 2017-02-28 23:30:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 3,656 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-06-26 04:12:30
合計ジャッジ時間 7,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,080 KB
testcase_01 AC 110 ms
52,844 KB
testcase_02 AC 110 ms
52,620 KB
testcase_03 AC 121 ms
54,036 KB
testcase_04 AC 110 ms
52,996 KB
testcase_05 AC 110 ms
52,808 KB
testcase_06 AC 110 ms
52,928 KB
testcase_07 AC 124 ms
54,172 KB
testcase_08 AC 121 ms
54,116 KB
testcase_09 AC 124 ms
54,020 KB
testcase_10 AC 110 ms
53,000 KB
testcase_11 AC 112 ms
52,880 KB
testcase_12 AC 111 ms
52,724 KB
testcase_13 AC 120 ms
53,904 KB
testcase_14 AC 123 ms
54,116 KB
testcase_15 AC 123 ms
54,028 KB
testcase_16 AC 124 ms
53,944 KB
testcase_17 AC 111 ms
53,036 KB
testcase_18 AC 127 ms
54,148 KB
testcase_19 AC 123 ms
53,680 KB
testcase_20 AC 125 ms
54,108 KB
testcase_21 AC 124 ms
54,240 KB
testcase_22 AC 112 ms
52,824 KB
testcase_23 AC 122 ms
54,124 KB
testcase_24 AC 111 ms
52,988 KB
testcase_25 AC 124 ms
54,032 KB
testcase_26 AC 125 ms
53,820 KB
testcase_27 AC 124 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		char in[] =
				s.next()
				.replaceFirst("OOO", "1")
				.replaceFirst("XXX", "2")
				.toCharArray();

		for(char c:in) {
			switch(c) {
			case '1':
				System.out.println("East");
				return;
			case '2':
				System.out.println("West");
				return;
			}
		}
		System.out.println("NA");
	}
}
0