結果

問題 No.197 手品
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-03 22:44:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 75,672 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-06-27 09:21:56
合計ジャッジ時間 11,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,548 KB
testcase_01 AC 138 ms
41,412 KB
testcase_02 AC 134 ms
41,036 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 135 ms
41,492 KB
testcase_06 AC 135 ms
41,220 KB
testcase_07 AC 145 ms
41,288 KB
testcase_08 AC 142 ms
41,080 KB
testcase_09 AC 135 ms
41,168 KB
testcase_10 AC 136 ms
41,688 KB
testcase_11 AC 137 ms
41,372 KB
testcase_12 AC 135 ms
41,032 KB
testcase_13 AC 134 ms
41,572 KB
testcase_14 AC 138 ms
41,764 KB
testcase_15 AC 136 ms
41,432 KB
testcase_16 AC 136 ms
41,288 KB
testcase_17 AC 136 ms
41,284 KB
testcase_18 AC 133 ms
41,288 KB
testcase_19 AC 137 ms
41,288 KB
testcase_20 AC 135 ms
41,344 KB
testcase_21 AC 136 ms
41,264 KB
testcase_22 AC 134 ms
41,528 KB
testcase_23 AC 134 ms
41,556 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 137 ms
41,564 KB
testcase_28 WA -
testcase_29 AC 143 ms
41,548 KB
testcase_30 AC 135 ms
41,560 KB
testcase_31 AC 137 ms
41,392 KB
testcase_32 AC 135 ms
41,632 KB
testcase_33 AC 134 ms
41,228 KB
testcase_34 WA -
testcase_35 AC 137 ms
41,620 KB
testcase_36 AC 135 ms
41,660 KB
testcase_37 AC 137 ms
41,512 KB
testcase_38 WA -
testcase_39 AC 135 ms
41,560 KB
testcase_40 AC 133 ms
41,356 KB
testcase_41 AC 137 ms
41,408 KB
testcase_42 AC 136 ms
41,412 KB
testcase_43 WA -
testcase_44 AC 135 ms
41,444 KB
testcase_45 AC 134 ms
41,588 KB
testcase_46 AC 135 ms
41,304 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() {
        char[] sb = in.next().toCharArray();
        long n = in.nextLong();
        char[] sa = in.next().toCharArray();
        int cnt = 0;
        for (int i=0; i<3; i++) {
            if (sb[i] != sa[i]) cnt++;
        }
        out.println(cnt>n?"SUCCESS":"FAILURE");
    }

    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