結果

問題 No.197 手品
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 18:33:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,339 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 77,596 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-06-27 13:37:05
合計ジャッジ時間 9,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,224 KB
testcase_01 AC 109 ms
39,516 KB
testcase_02 AC 127 ms
41,192 KB
testcase_03 AC 125 ms
41,124 KB
testcase_04 AC 112 ms
39,700 KB
testcase_05 AC 127 ms
41,404 KB
testcase_06 AC 127 ms
41,188 KB
testcase_07 AC 125 ms
41,296 KB
testcase_08 AC 127 ms
41,016 KB
testcase_09 AC 127 ms
41,288 KB
testcase_10 AC 126 ms
41,164 KB
testcase_11 AC 128 ms
41,180 KB
testcase_12 AC 126 ms
40,976 KB
testcase_13 AC 126 ms
40,932 KB
testcase_14 AC 126 ms
41,188 KB
testcase_15 AC 122 ms
40,912 KB
testcase_16 AC 128 ms
40,968 KB
testcase_17 AC 128 ms
41,264 KB
testcase_18 AC 128 ms
41,156 KB
testcase_19 AC 114 ms
40,120 KB
testcase_20 AC 123 ms
40,864 KB
testcase_21 AC 126 ms
41,396 KB
testcase_22 AC 123 ms
41,068 KB
testcase_23 AC 118 ms
39,996 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 125 ms
41,384 KB
testcase_27 AC 113 ms
39,988 KB
testcase_28 AC 118 ms
40,812 KB
testcase_29 AC 123 ms
41,064 KB
testcase_30 AC 127 ms
41,284 KB
testcase_31 AC 126 ms
41,064 KB
testcase_32 AC 129 ms
40,944 KB
testcase_33 WA -
testcase_34 AC 125 ms
41,164 KB
testcase_35 AC 124 ms
41,412 KB
testcase_36 AC 125 ms
41,320 KB
testcase_37 AC 123 ms
41,160 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 113 ms
40,100 KB
testcase_41 AC 121 ms
40,264 KB
testcase_42 AC 118 ms
39,900 KB
testcase_43 AC 119 ms
39,892 KB
testcase_44 AC 112 ms
39,884 KB
testcase_45 AC 123 ms
41,060 KB
testcase_46 AC 124 ms
41,252 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<2; 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