結果

問題 No.197 手品
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-28 23:44:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,480 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 77,960 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-27 07:18:24
合計ジャッジ時間 9,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 129 ms
41,064 KB
testcase_04 AC 126 ms
41,172 KB
testcase_05 AC 128 ms
41,040 KB
testcase_06 AC 130 ms
41,472 KB
testcase_07 AC 127 ms
41,196 KB
testcase_08 AC 128 ms
41,152 KB
testcase_09 AC 129 ms
41,460 KB
testcase_10 AC 129 ms
41,420 KB
testcase_11 AC 117 ms
39,964 KB
testcase_12 AC 119 ms
39,876 KB
testcase_13 AC 129 ms
41,148 KB
testcase_14 AC 127 ms
41,544 KB
testcase_15 AC 128 ms
41,588 KB
testcase_16 AC 131 ms
41,164 KB
testcase_17 AC 128 ms
41,284 KB
testcase_18 AC 131 ms
41,252 KB
testcase_19 AC 128 ms
41,480 KB
testcase_20 AC 132 ms
41,184 KB
testcase_21 AC 131 ms
41,036 KB
testcase_22 AC 129 ms
41,300 KB
testcase_23 AC 116 ms
40,152 KB
testcase_24 AC 131 ms
41,180 KB
testcase_25 AC 129 ms
41,312 KB
testcase_26 AC 130 ms
41,428 KB
testcase_27 AC 128 ms
41,124 KB
testcase_28 AC 130 ms
41,352 KB
testcase_29 AC 130 ms
41,240 KB
testcase_30 AC 131 ms
41,232 KB
testcase_31 WA -
testcase_32 AC 116 ms
41,468 KB
testcase_33 AC 115 ms
41,116 KB
testcase_34 AC 117 ms
40,012 KB
testcase_35 AC 125 ms
41,404 KB
testcase_36 AC 128 ms
41,100 KB
testcase_37 AC 127 ms
41,352 KB
testcase_38 AC 130 ms
41,200 KB
testcase_39 AC 130 ms
41,256 KB
testcase_40 AC 129 ms
41,220 KB
testcase_41 AC 129 ms
41,352 KB
testcase_42 WA -
testcase_43 AC 131 ms
41,432 KB
testcase_44 AC 130 ms
41,164 KB
testcase_45 AC 129 ms
41,180 KB
testcase_46 AC 131 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String st = koko.next();
        long n = koko.nextLong();
        String end = koko.next();
        int stm = 0;
        int stb = 0;
        int enm = 0;
        int enb = 0;
        for(int i=0; i<3; i++){
        	if(st.charAt(i)=='o'){
        		stm++;
        	}else{
        		stb++;
        	}
        	if(end.charAt(i)=='o'){
        		enm++;
        	}else{
        		enb++;
        	}
        }
        if(stb==enb&&stm==enm){
        	if(st.equals("oox")){
        	    if(n==0&&!end.equals("oox")){
        		    System.out.println("SUCCESS");
        	    }else if(n==1&&end.equals("xoo")){
        		    System.out.println("SUCCESS");
        	    }else{
        		    System.out.println("FAILURE");
        	    }
            }else if(st.equals("xoo")){
        	    if(n==0&&!end.equals("xoo")){
        		    System.out.println("SUCCESS");
        	    }else if(n==1&&end.equals("oox")){
            		System.out.println("SUCCESS");
            	}else{
        	    	System.out.println("FAILURE");
        	    }
            }else if(st.equals("oxo")){
            	if(n==0&&!end.equals("oxo")){
            		System.out.println("SUCCESS");
            	}else if(n==1&&end.equals("oxo")){
        	    	System.out.println("SUCCESS");
        	    }else{
        	    	System.out.println("FAILURE");
        	    }
            }else if(st.equals("xxo")){
        	    if(n==0&&!end.equals("xxo")){
        		    System.out.println("SUCCESS");
        	    }else if(n==1&&end.equals("oxx")){
        		    System.out.println("SUCCESS");
        	    }else{
        		    System.out.println("FAILURE");
        	    }
            }else if(st.equals("oxx")){
        	    if(n==0&&!end.equals("oxx")){
        		    System.out.println("SUCCESS");
        	    }else if(n==1&&end.equals("xxo")){
            		System.out.println("SUCCESS");
            	}else{
        	    	System.out.println("FAILURE");
        	    }
            }else if(st.equals("xox")){
            	if(n==0&&!end.equals("xox")){
            		System.out.println("SUCCESS");
            	}else if(n==1&&end.equals("xox")){
        	    	System.out.println("SUCCESS");
        	    }else{
        	    	System.out.println("FAILURE");
        	    }
            }
        }else{
        	System.out.println("SUCCESS");
        }
    }
}
0