結果

問題 No.486 3 Straight Win(3連勝)
ユーザー jimanojimano
提出日時 2018-01-18 23:47:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 2,841 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-06 15:51:08
合計ジャッジ時間 6,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,060 KB
testcase_01 AC 98 ms
41,396 KB
testcase_02 AC 99 ms
40,900 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 112 ms
41,180 KB
testcase_06 AC 114 ms
41,044 KB
testcase_07 WA -
testcase_08 AC 113 ms
41,012 KB
testcase_09 WA -
testcase_10 AC 106 ms
41,228 KB
testcase_11 AC 107 ms
41,276 KB
testcase_12 WA -
testcase_13 AC 107 ms
40,832 KB
testcase_14 AC 101 ms
39,924 KB
testcase_15 AC 111 ms
41,296 KB
testcase_16 AC 103 ms
40,976 KB
testcase_17 AC 99 ms
41,268 KB
testcase_18 AC 95 ms
41,040 KB
testcase_19 AC 91 ms
41,140 KB
testcase_20 AC 98 ms
40,908 KB
testcase_21 AC 110 ms
41,144 KB
testcase_22 AC 107 ms
41,164 KB
testcase_23 WA -
testcase_24 AC 104 ms
41,036 KB
testcase_25 AC 109 ms
41,660 KB
testcase_26 AC 103 ms
39,772 KB
testcase_27 AC 93 ms
41,328 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 (o != -1) {
					System.out.println("East");
				} else {
					System.out.println("West");
				}
			}
		}
	}
}
0