結果

問題 No.486 3 Straight Win(3連勝)
ユーザー yun_appyun_app
提出日時 2017-03-08 14:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 51,852 KB
最終ジャッジ日時 2024-06-26 04:17:03
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,240 KB
testcase_01 AC 56 ms
50,300 KB
testcase_02 AC 53 ms
49,952 KB
testcase_03 AC 55 ms
50,220 KB
testcase_04 AC 53 ms
50,328 KB
testcase_05 AC 54 ms
50,116 KB
testcase_06 AC 53 ms
51,852 KB
testcase_07 AC 53 ms
49,964 KB
testcase_08 AC 54 ms
50,076 KB
testcase_09 AC 53 ms
50,228 KB
testcase_10 AC 52 ms
50,280 KB
testcase_11 AC 53 ms
50,160 KB
testcase_12 AC 54 ms
50,404 KB
testcase_13 AC 52 ms
50,264 KB
testcase_14 AC 53 ms
50,288 KB
testcase_15 AC 55 ms
50,296 KB
testcase_16 AC 53 ms
50,024 KB
testcase_17 AC 53 ms
50,256 KB
testcase_18 AC 54 ms
49,972 KB
testcase_19 AC 53 ms
50,008 KB
testcase_20 AC 54 ms
49,976 KB
testcase_21 AC 54 ms
50,256 KB
testcase_22 AC 53 ms
50,136 KB
testcase_23 AC 54 ms
50,296 KB
testcase_24 AC 52 ms
50,140 KB
testcase_25 AC 53 ms
50,284 KB
testcase_26 AC 54 ms
50,308 KB
testcase_27 AC 53 ms
50,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Main
{
    
    
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        int east = 0;
        int west = 0;
        for(int i=0;i<line.length();i++){
            char c = line.charAt(i);
            switch(c){
            case 'O':
                west=0;
                ++east;
                break;
            case 'X':
                east=0;
                ++west;
                break;
            }
            if(east>=3){
                System.out.println("East");
                return;
            }
            if(west>=3){
                System.out.println("West");
                return;
            }
        }
        System.out.println("NA");
    }
}
0