結果

問題 No.486 3 Straight Win(3連勝)
ユーザー kazapyon27kazapyon27
提出日時 2017-12-09 23:19:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 3,314 ms
コンパイル使用メモリ 77,036 KB
実行使用メモリ 37,084 KB
最終ジャッジ日時 2024-06-26 04:36:20
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,508 KB
testcase_01 AC 51 ms
36,992 KB
testcase_02 AC 52 ms
36,772 KB
testcase_03 AC 53 ms
36,876 KB
testcase_04 AC 52 ms
36,840 KB
testcase_05 AC 55 ms
36,704 KB
testcase_06 AC 53 ms
36,836 KB
testcase_07 AC 53 ms
36,692 KB
testcase_08 AC 52 ms
37,028 KB
testcase_09 AC 52 ms
36,784 KB
testcase_10 AC 53 ms
37,036 KB
testcase_11 AC 54 ms
36,608 KB
testcase_12 AC 55 ms
36,948 KB
testcase_13 AC 54 ms
36,856 KB
testcase_14 AC 53 ms
36,840 KB
testcase_15 AC 54 ms
36,864 KB
testcase_16 AC 54 ms
37,076 KB
testcase_17 AC 52 ms
37,084 KB
testcase_18 AC 54 ms
36,848 KB
testcase_19 AC 52 ms
36,676 KB
testcase_20 AC 53 ms
36,488 KB
testcase_21 AC 57 ms
37,080 KB
testcase_22 AC 55 ms
36,692 KB
testcase_23 AC 54 ms
36,476 KB
testcase_24 AC 52 ms
36,916 KB
testcase_25 AC 55 ms
36,484 KB
testcase_26 AC 53 ms
36,828 KB
testcase_27 AC 54 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.486 3 Straight Win(3連勝)*/
import java.io.*;
public class No486 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			String result=input.readLine();
			int eastPoint=Search(result,"East"),westPoint=Search(result,"West");			
			if(eastPoint==-1||westPoint==-1){
				Judge(eastPoint,westPoint,true);
			}else{
				Judge(eastPoint,westPoint,false);
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
	static int Search (String result,String team){
		int score=0;
		if(team.equals("East")){
			score=result.indexOf("OOO");
		}else if(team.equals("West")){
			score=result.indexOf("XXX");
		}
		return score;
	}
	static void Judge(int East,int West,boolean flg){
		if(flg==true){
			if(East>West){
				System.out.println("East");
			}else if(East<West){
				System.out.println("West");
			}else{
				System.out.println("NA");
			}
		}else{
			if(East<West){
				System.out.println("East");
			}else{
				System.out.println("West");
			}
		}
	}
}
0