結果

問題 No.197 手品
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-03 22:54:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 1,428 bytes
コンパイル時間 3,845 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-07-20 03:39:29
合計ジャッジ時間 11,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,060 KB
testcase_01 AC 136 ms
40,884 KB
testcase_02 AC 137 ms
41,084 KB
testcase_03 AC 137 ms
41,176 KB
testcase_04 AC 136 ms
41,076 KB
testcase_05 AC 120 ms
39,872 KB
testcase_06 AC 134 ms
41,360 KB
testcase_07 AC 138 ms
41,204 KB
testcase_08 AC 137 ms
41,292 KB
testcase_09 AC 133 ms
41,032 KB
testcase_10 AC 138 ms
41,448 KB
testcase_11 AC 136 ms
40,908 KB
testcase_12 AC 135 ms
41,368 KB
testcase_13 AC 138 ms
41,064 KB
testcase_14 AC 138 ms
41,128 KB
testcase_15 AC 120 ms
39,932 KB
testcase_16 AC 136 ms
41,184 KB
testcase_17 AC 134 ms
40,936 KB
testcase_18 AC 122 ms
39,892 KB
testcase_19 AC 137 ms
41,272 KB
testcase_20 AC 137 ms
41,144 KB
testcase_21 AC 139 ms
40,916 KB
testcase_22 AC 142 ms
41,192 KB
testcase_23 AC 134 ms
41,412 KB
testcase_24 AC 137 ms
41,184 KB
testcase_25 AC 135 ms
41,172 KB
testcase_26 AC 135 ms
41,196 KB
testcase_27 AC 134 ms
40,952 KB
testcase_28 AC 136 ms
41,100 KB
testcase_29 AC 137 ms
41,084 KB
testcase_30 AC 137 ms
40,968 KB
testcase_31 AC 141 ms
41,160 KB
testcase_32 AC 136 ms
41,024 KB
testcase_33 AC 136 ms
41,328 KB
testcase_34 AC 136 ms
41,244 KB
testcase_35 AC 138 ms
40,972 KB
testcase_36 AC 139 ms
41,256 KB
testcase_37 AC 138 ms
41,004 KB
testcase_38 AC 133 ms
41,112 KB
testcase_39 AC 136 ms
41,096 KB
testcase_40 AC 135 ms
40,936 KB
testcase_41 AC 138 ms
41,064 KB
testcase_42 AC 136 ms
40,928 KB
testcase_43 AC 135 ms
41,232 KB
testcase_44 AC 135 ms
40,988 KB
testcase_45 AC 137 ms
41,012 KB
testcase_46 AC 137 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.197 手品

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0197 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        String sb = in.next();
        long n = in.nextLong();
        String sa = in.next();
        int cnt1 = 0, cnt2 = 0;
        for (int i=0; i<3; i++) {
            if (sb.charAt(i) == 'o') cnt1++;
            if (sa.charAt(i) == 'o') cnt2++;
        }
        if (cnt1 != cnt2) {
            out.println("SUCCESS");
        }else if (n >= 2) {
            out.println("FAILURE");
        }else if (n == 0) {
            out.println(sb.equals(sa) ? "FAILURE" : "SUCCESS");
        }else {
            out.println((sb.charAt(0) == sa.charAt(1) && sb.charAt(1) == sa.charAt(0) && sb.charAt(2) == sa.charAt(2))
                || (sb.charAt(0) == sa.charAt(0) && sb.charAt(1) == sa.charAt(2) && sb.charAt(2) == sa.charAt(1))
                ? "FAILURE" : "SUCCESS");
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0