結果

問題 No.486 3 Straight Win(3連勝)
ユーザー jimanojimano
提出日時 2018-01-19 00:02:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 3,827 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-26 04:37:10
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,996 KB
testcase_01 AC 127 ms
41,364 KB
testcase_02 AC 128 ms
41,280 KB
testcase_03 AC 129 ms
41,048 KB
testcase_04 AC 129 ms
40,924 KB
testcase_05 AC 126 ms
40,960 KB
testcase_06 AC 127 ms
41,168 KB
testcase_07 AC 124 ms
41,276 KB
testcase_08 AC 127 ms
41,148 KB
testcase_09 AC 128 ms
41,004 KB
testcase_10 AC 130 ms
40,952 KB
testcase_11 AC 130 ms
41,140 KB
testcase_12 AC 129 ms
41,000 KB
testcase_13 AC 128 ms
41,056 KB
testcase_14 AC 125 ms
41,160 KB
testcase_15 AC 125 ms
41,064 KB
testcase_16 AC 127 ms
40,988 KB
testcase_17 AC 128 ms
40,912 KB
testcase_18 AC 128 ms
41,124 KB
testcase_19 AC 130 ms
41,252 KB
testcase_20 AC 127 ms
41,404 KB
testcase_21 AC 124 ms
41,120 KB
testcase_22 AC 125 ms
41,384 KB
testcase_23 AC 127 ms
41,296 KB
testcase_24 AC 133 ms
41,056 KB
testcase_25 AC 131 ms
40,944 KB
testcase_26 AC 129 ms
41,260 KB
testcase_27 AC 126 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.util.Scanner;

public class No0486 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			String S = sc.next();
			int o = S.indexOf("OOO");
			int x = S.indexOf("XXX");

			if (o == -1 && x == -1) {
				System.out.println("NA");
			} else if (x == -1 && o != -1) {
				System.out.println("East");
			} else if (o == -1 && x != -1) {
				System.out.println("West");
			} else if (o < x) {
				System.out.println("East");
			} else {
				System.out.println("West");
			}
		}
	}
}
0