結果

問題 No.486 3 Straight Win(3連勝)
ユーザー jimanojimano
提出日時 2018-01-19 00:06:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 4,051 ms
コンパイル使用メモリ 75,564 KB
実行使用メモリ 41,880 KB
最終ジャッジ日時 2024-06-26 04:38:04
合計ジャッジ時間 8,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,200 KB
testcase_01 AC 128 ms
41,476 KB
testcase_02 AC 130 ms
41,188 KB
testcase_03 AC 131 ms
41,724 KB
testcase_04 AC 131 ms
41,276 KB
testcase_05 AC 131 ms
41,404 KB
testcase_06 AC 130 ms
41,400 KB
testcase_07 AC 126 ms
41,404 KB
testcase_08 AC 126 ms
41,096 KB
testcase_09 AC 130 ms
41,728 KB
testcase_10 AC 132 ms
41,180 KB
testcase_11 AC 135 ms
41,380 KB
testcase_12 AC 133 ms
41,388 KB
testcase_13 AC 131 ms
41,252 KB
testcase_14 AC 130 ms
41,264 KB
testcase_15 AC 115 ms
40,092 KB
testcase_16 AC 119 ms
40,068 KB
testcase_17 AC 134 ms
41,380 KB
testcase_18 AC 135 ms
41,352 KB
testcase_19 AC 142 ms
41,236 KB
testcase_20 AC 114 ms
40,276 KB
testcase_21 AC 131 ms
41,104 KB
testcase_22 AC 131 ms
41,252 KB
testcase_23 AC 137 ms
41,880 KB
testcase_24 AC 128 ms
41,524 KB
testcase_25 AC 129 ms
41,388 KB
testcase_26 AC 132 ms
41,600 KB
testcase_27 AC 128 ms
41,448 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 (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 if (x < o) {
				System.out.println("West");
			} else {
				System.out.println("NA");
			}
		}
	}
}
0