結果

問題 No.486 3 Straight Win(3連勝)
ユーザー jimanojimano
提出日時 2018-01-18 23:52:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 75,532 KB
実行使用メモリ 56,360 KB
最終ジャッジ日時 2024-06-06 15:52:46
合計ジャッジ時間 6,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 112 ms
54,012 KB
testcase_02 WA -
testcase_03 AC 109 ms
53,852 KB
testcase_04 AC 100 ms
52,872 KB
testcase_05 AC 113 ms
54,252 KB
testcase_06 WA -
testcase_07 AC 98 ms
52,660 KB
testcase_08 AC 110 ms
52,700 KB
testcase_09 AC 110 ms
54,104 KB
testcase_10 AC 113 ms
54,080 KB
testcase_11 AC 105 ms
52,908 KB
testcase_12 AC 102 ms
52,620 KB
testcase_13 WA -
testcase_14 AC 112 ms
54,040 KB
testcase_15 WA -
testcase_16 AC 111 ms
53,856 KB
testcase_17 AC 99 ms
52,712 KB
testcase_18 AC 99 ms
53,752 KB
testcase_19 AC 102 ms
52,964 KB
testcase_20 WA -
testcase_21 AC 117 ms
53,756 KB
testcase_22 AC 111 ms
53,832 KB
testcase_23 AC 113 ms
53,944 KB
testcase_24 AC 117 ms
53,740 KB
testcase_25 AC 98 ms
54,148 KB
testcase_26 AC 101 ms
52,724 KB
testcase_27 AC 115 ms
54,000 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 < x) {
					System.out.println("East");
				} else if (o == -1 || x < o) {
					System.out.println("West");
				}
			}
		}
	}
}
0