結果

問題 No.197 手品
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 19:22:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 1,339 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 77,024 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-07-20 03:50:45
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,240 KB
testcase_01 AC 134 ms
41,124 KB
testcase_02 AC 131 ms
40,832 KB
testcase_03 AC 134 ms
40,864 KB
testcase_04 AC 133 ms
41,188 KB
testcase_05 AC 130 ms
41,180 KB
testcase_06 AC 134 ms
41,248 KB
testcase_07 AC 135 ms
40,896 KB
testcase_08 AC 133 ms
41,280 KB
testcase_09 AC 135 ms
41,080 KB
testcase_10 AC 131 ms
41,040 KB
testcase_11 AC 130 ms
41,124 KB
testcase_12 AC 133 ms
40,864 KB
testcase_13 AC 136 ms
41,012 KB
testcase_14 AC 131 ms
41,192 KB
testcase_15 AC 131 ms
40,948 KB
testcase_16 AC 133 ms
41,084 KB
testcase_17 AC 134 ms
40,996 KB
testcase_18 AC 130 ms
41,268 KB
testcase_19 AC 134 ms
41,128 KB
testcase_20 AC 132 ms
41,268 KB
testcase_21 AC 137 ms
41,192 KB
testcase_22 AC 135 ms
41,160 KB
testcase_23 AC 131 ms
41,236 KB
testcase_24 AC 133 ms
41,352 KB
testcase_25 AC 131 ms
40,956 KB
testcase_26 AC 133 ms
41,216 KB
testcase_27 AC 135 ms
40,920 KB
testcase_28 AC 131 ms
41,016 KB
testcase_29 AC 134 ms
41,004 KB
testcase_30 AC 130 ms
40,980 KB
testcase_31 AC 132 ms
41,060 KB
testcase_32 AC 130 ms
41,212 KB
testcase_33 AC 118 ms
39,736 KB
testcase_34 AC 134 ms
41,136 KB
testcase_35 AC 130 ms
40,940 KB
testcase_36 AC 126 ms
41,000 KB
testcase_37 AC 129 ms
41,124 KB
testcase_38 AC 133 ms
41,080 KB
testcase_39 AC 131 ms
40,948 KB
testcase_40 AC 132 ms
41,204 KB
testcase_41 AC 132 ms
41,004 KB
testcase_42 AC 130 ms
40,660 KB
testcase_43 AC 128 ms
40,936 KB
testcase_44 AC 131 ms
41,212 KB
testcase_45 AC 132 ms
40,980 KB
testcase_46 AC 130 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String Sbefore = sc.next();
        int N = sc.nextInt();
        String Safter = sc.next();
        String ans = judge(Sbefore, Safter, N);
        System.out.println(ans);
        
    }
    static String judge(String x, String y, int N){
        String ans = "SUCCESS";
        int a=0;
        int b=0;
        for(int i=0; i<3; i++){
            if(x.charAt(i)=='o')a++;
        }
        for(int i=0; i<3; i++){
            if(y.charAt(i)=='o')b++;
        }
        if(a==b){
            if(N>=2){
                ans="FAILURE";
            }else if(N==0){
                if(x.equals(y)){
                    ans="FAILURE";
                }
            }else{
                char [] c = x.toCharArray();
                char [] p = new char [3];
                for(int i=0; i<3; i++){
                    if(i==1)continue;
                    p[i]=c[i];
                    p[(i+1)%3]=c[(i+2)%3];
                    p[(i+2)%3]=c[(i+1)%3];
                    String t = String.valueOf(p);
                    if(t.equals(y)){
                        ans="FAILURE";
                        break;
                    }
                }
            }
        }
        return ans;
    }
}
0