結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,300 KB
testcase_01 AC 136 ms
41,604 KB
testcase_02 AC 139 ms
41,236 KB
testcase_03 AC 138 ms
41,392 KB
testcase_04 AC 137 ms
41,676 KB
testcase_05 AC 136 ms
41,212 KB
testcase_06 AC 137 ms
41,804 KB
testcase_07 AC 139 ms
41,504 KB
testcase_08 AC 137 ms
41,172 KB
testcase_09 AC 136 ms
41,608 KB
testcase_10 AC 137 ms
41,172 KB
testcase_11 AC 137 ms
41,188 KB
testcase_12 AC 135 ms
41,560 KB
testcase_13 AC 138 ms
42,088 KB
testcase_14 AC 137 ms
41,088 KB
testcase_15 AC 139 ms
41,232 KB
testcase_16 AC 136 ms
41,628 KB
testcase_17 AC 137 ms
41,428 KB
testcase_18 AC 136 ms
41,864 KB
testcase_19 AC 138 ms
41,472 KB
testcase_20 AC 138 ms
41,220 KB
testcase_21 AC 137 ms
41,240 KB
testcase_22 AC 139 ms
41,172 KB
testcase_23 WA -
testcase_24 AC 136 ms
41,672 KB
testcase_25 AC 137 ms
41,344 KB
testcase_26 AC 138 ms
41,528 KB
testcase_27 AC 136 ms
41,336 KB
testcase_28 AC 138 ms
41,476 KB
testcase_29 AC 136 ms
41,032 KB
testcase_30 AC 137 ms
41,440 KB
testcase_31 WA -
testcase_32 AC 139 ms
41,352 KB
testcase_33 AC 137 ms
41,416 KB
testcase_34 AC 141 ms
41,532 KB
testcase_35 AC 136 ms
41,532 KB
testcase_36 AC 137 ms
41,304 KB
testcase_37 AC 135 ms
41,600 KB
testcase_38 AC 136 ms
41,156 KB
testcase_39 AC 135 ms
41,320 KB
testcase_40 AC 141 ms
41,088 KB
testcase_41 AC 142 ms
41,296 KB
testcase_42 AC 136 ms
41,220 KB
testcase_43 AC 139 ms
41,584 KB
testcase_44 AC 135 ms
41,296 KB
testcase_45 AC 138 ms
41,824 KB
testcase_46 AC 139 ms
41,776 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