結果

問題 No.486 3 Straight Win(3連勝)
ユーザー あsdfあsdf
提出日時 2017-04-02 01:20:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-07-07 19:17:33
合計ジャッジ時間 7,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,176 KB
testcase_01 AC 131 ms
41,056 KB
testcase_02 AC 130 ms
41,192 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 130 ms
41,272 KB
testcase_15 WA -
testcase_16 AC 128 ms
41,060 KB
testcase_17 AC 131 ms
41,104 KB
testcase_18 AC 128 ms
41,124 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
41,220 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 133 ms
41,260 KB
testcase_25 AC 127 ms
41,044 KB
testcase_26 AC 130 ms
41,252 KB
testcase_27 AC 129 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String a = sc.next();

    if (a.length() < 3) {
      System.out.println("NA");
      return;
    }
    char[] ca = a.toCharArray();

    for (int i = 2; i < ca.length; i++) {
      if (ca[i] == ca[i - 1] && ca[i - 1] == ca[i - 2] && ca[i] == ca[i - 2]) {
        if (ca[i] == 'O') {
          System.out.println("East");
          break;
        } else if (ca[i] == 'X') {
          System.out.println("West");
          break;
        } else {
          System.out.println("へんだよ!");
          break;
        }
      } else {
        System.out.println("NA");
        break;
      }
    }

  }
}
0