結果

問題 No.197 手品
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-03 22:53:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,423 bytes
コンパイル時間 3,495 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-06-27 09:33:24
合計ジャッジ時間 10,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,512 KB
testcase_01 AC 125 ms
41,332 KB
testcase_02 AC 118 ms
41,036 KB
testcase_03 AC 123 ms
41,176 KB
testcase_04 AC 112 ms
40,128 KB
testcase_05 AC 123 ms
41,508 KB
testcase_06 AC 120 ms
40,980 KB
testcase_07 AC 127 ms
41,180 KB
testcase_08 AC 123 ms
41,836 KB
testcase_09 AC 124 ms
41,520 KB
testcase_10 AC 123 ms
41,284 KB
testcase_11 AC 129 ms
41,636 KB
testcase_12 AC 110 ms
40,428 KB
testcase_13 AC 112 ms
40,200 KB
testcase_14 AC 126 ms
41,572 KB
testcase_15 AC 128 ms
41,404 KB
testcase_16 AC 126 ms
41,760 KB
testcase_17 AC 124 ms
41,444 KB
testcase_18 AC 123 ms
41,188 KB
testcase_19 AC 112 ms
40,200 KB
testcase_20 AC 122 ms
41,612 KB
testcase_21 AC 121 ms
41,064 KB
testcase_22 AC 126 ms
41,836 KB
testcase_23 AC 126 ms
41,720 KB
testcase_24 AC 118 ms
41,592 KB
testcase_25 AC 124 ms
41,292 KB
testcase_26 AC 126 ms
41,640 KB
testcase_27 AC 124 ms
41,320 KB
testcase_28 AC 126 ms
41,672 KB
testcase_29 AC 119 ms
41,348 KB
testcase_30 AC 127 ms
41,536 KB
testcase_31 AC 114 ms
40,440 KB
testcase_32 WA -
testcase_33 AC 123 ms
41,224 KB
testcase_34 AC 123 ms
41,636 KB
testcase_35 AC 127 ms
41,436 KB
testcase_36 AC 113 ms
40,200 KB
testcase_37 AC 127 ms
41,260 KB
testcase_38 AC 112 ms
40,316 KB
testcase_39 AC 125 ms
41,480 KB
testcase_40 AC 125 ms
41,320 KB
testcase_41 AC 123 ms
41,476 KB
testcase_42 AC 129 ms
41,720 KB
testcase_43 AC 126 ms
41,408 KB
testcase_44 AC 124 ms
41,508 KB
testcase_45 AC 129 ms
41,664 KB
testcase_46 AC 122 ms
41,512 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 != 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