結果

問題 No.197 手品
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-28 23:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 2,600 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 78,344 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-20 03:34:17
合計ジャッジ時間 8,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,580 KB
testcase_01 AC 120 ms
40,860 KB
testcase_02 AC 112 ms
40,560 KB
testcase_03 AC 115 ms
41,624 KB
testcase_04 AC 119 ms
41,320 KB
testcase_05 AC 129 ms
40,836 KB
testcase_06 AC 106 ms
40,272 KB
testcase_07 AC 114 ms
40,920 KB
testcase_08 AC 114 ms
40,948 KB
testcase_09 AC 106 ms
40,152 KB
testcase_10 AC 112 ms
41,316 KB
testcase_11 AC 102 ms
39,964 KB
testcase_12 AC 112 ms
41,236 KB
testcase_13 AC 129 ms
41,156 KB
testcase_14 AC 108 ms
39,784 KB
testcase_15 AC 116 ms
41,192 KB
testcase_16 AC 100 ms
39,592 KB
testcase_17 AC 120 ms
41,000 KB
testcase_18 AC 115 ms
40,904 KB
testcase_19 AC 114 ms
40,788 KB
testcase_20 AC 106 ms
40,276 KB
testcase_21 AC 121 ms
41,240 KB
testcase_22 AC 129 ms
41,316 KB
testcase_23 AC 119 ms
41,448 KB
testcase_24 AC 105 ms
39,876 KB
testcase_25 AC 132 ms
41,316 KB
testcase_26 AC 125 ms
41,248 KB
testcase_27 AC 120 ms
41,048 KB
testcase_28 AC 103 ms
39,896 KB
testcase_29 AC 121 ms
40,856 KB
testcase_30 AC 113 ms
40,156 KB
testcase_31 AC 106 ms
39,784 KB
testcase_32 AC 115 ms
40,784 KB
testcase_33 AC 100 ms
39,656 KB
testcase_34 AC 112 ms
41,048 KB
testcase_35 AC 100 ms
40,100 KB
testcase_36 AC 123 ms
40,916 KB
testcase_37 AC 111 ms
40,100 KB
testcase_38 AC 108 ms
39,924 KB
testcase_39 AC 117 ms
41,308 KB
testcase_40 AC 104 ms
39,876 KB
testcase_41 AC 119 ms
41,068 KB
testcase_42 AC 117 ms
41,252 KB
testcase_43 AC 111 ms
40,100 KB
testcase_44 AC 103 ms
39,800 KB
testcase_45 AC 129 ms
41,080 KB
testcase_46 AC 124 ms
41,312 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 if(st.equals("xxx")||st.equals("ooo")){
            	System.out.println("FAILURE");
            }
        }else{
        	System.out.println("SUCCESS");
        }
        
        
    }
}
0