結果

問題 No.197 手品
ユーザー Mcpu3Mcpu3
提出日時 2018-09-16 16:26:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-07-18 07:24:13
合計ジャッジ時間 8,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,432 KB
testcase_01 AC 120 ms
41,376 KB
testcase_02 AC 115 ms
41,392 KB
testcase_03 AC 113 ms
40,948 KB
testcase_04 AC 116 ms
40,968 KB
testcase_05 AC 114 ms
40,376 KB
testcase_06 AC 116 ms
40,964 KB
testcase_07 AC 118 ms
41,204 KB
testcase_08 AC 124 ms
41,356 KB
testcase_09 AC 116 ms
41,096 KB
testcase_10 AC 103 ms
39,948 KB
testcase_11 AC 114 ms
41,108 KB
testcase_12 AC 114 ms
41,260 KB
testcase_13 AC 100 ms
39,608 KB
testcase_14 AC 104 ms
40,276 KB
testcase_15 AC 125 ms
41,108 KB
testcase_16 AC 115 ms
41,104 KB
testcase_17 AC 102 ms
40,064 KB
testcase_18 AC 113 ms
41,276 KB
testcase_19 AC 113 ms
41,008 KB
testcase_20 AC 102 ms
40,240 KB
testcase_21 AC 96 ms
39,936 KB
testcase_22 AC 109 ms
40,856 KB
testcase_23 WA -
testcase_24 AC 121 ms
41,128 KB
testcase_25 AC 116 ms
41,104 KB
testcase_26 AC 108 ms
39,900 KB
testcase_27 AC 111 ms
41,300 KB
testcase_28 AC 110 ms
40,856 KB
testcase_29 AC 116 ms
41,376 KB
testcase_30 AC 117 ms
41,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 114 ms
41,272 KB
testcase_34 AC 104 ms
40,340 KB
testcase_35 AC 121 ms
41,528 KB
testcase_36 AC 112 ms
41,260 KB
testcase_37 AC 112 ms
41,340 KB
testcase_38 AC 111 ms
40,292 KB
testcase_39 AC 108 ms
39,980 KB
testcase_40 AC 113 ms
40,852 KB
testcase_41 AC 107 ms
40,988 KB
testcase_42 AC 110 ms
41,012 KB
testcase_43 AC 116 ms
41,244 KB
testcase_44 AC 99 ms
39,752 KB
testcase_45 AC 112 ms
41,484 KB
testcase_46 AC 102 ms
40,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n,t[]=new int[2],f=0;
        String s[]=new String[2];
        s[0]=sc.next();
        n=sc.nextInt();
        s[1]=sc.next();
        sc.close();
        for(int i=0;i<2;++i)for(int j=0;j<3;++j)if(s[i].charAt(j)=='o')++t[i];
        if(t[0]!=t[1])f=1;
        else if(2>n&&(n>0&&(s[0].equals("oxo")&&s[1].equals("oxo")||s[0].equals("xox")&&s[1].equals("xox"))||s[0].equals("oox")&&s[1].equals("xoo")||s[0].equals("xoo")&&s[1].equals("oox")||s[0].equals("oxx")&&s[1].equals("xxo")||s[0].equals("xxo")&&s[1].equals("oxx")))f=1;
        else if(1>n&&s[0].equals(s[1]))f=1;
        System.out.print(f>0?"SUCCESS":"FAILURE");
    }
}
0