結果

問題 No.197 手品
ユーザー kou6839kou6839
提出日時 2015-04-29 14:00:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 55,892 KB
最終ジャッジ日時 2024-06-27 08:53:02
合計ジャッジ時間 9,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,812 KB
testcase_01 AC 134 ms
54,140 KB
testcase_02 AC 136 ms
54,000 KB
testcase_03 AC 133 ms
54,204 KB
testcase_04 AC 135 ms
53,960 KB
testcase_05 AC 135 ms
54,144 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 133 ms
54,248 KB
testcase_09 AC 136 ms
53,868 KB
testcase_10 AC 134 ms
53,936 KB
testcase_11 AC 133 ms
53,788 KB
testcase_12 AC 134 ms
54,020 KB
testcase_13 AC 134 ms
54,140 KB
testcase_14 AC 137 ms
53,732 KB
testcase_15 AC 135 ms
54,140 KB
testcase_16 AC 135 ms
53,876 KB
testcase_17 AC 135 ms
53,892 KB
testcase_18 AC 135 ms
54,140 KB
testcase_19 AC 135 ms
53,856 KB
testcase_20 AC 133 ms
53,908 KB
testcase_21 AC 134 ms
54,092 KB
testcase_22 AC 135 ms
54,052 KB
testcase_23 AC 137 ms
53,876 KB
testcase_24 AC 136 ms
54,320 KB
testcase_25 AC 134 ms
54,080 KB
testcase_26 WA -
testcase_27 AC 134 ms
53,988 KB
testcase_28 AC 138 ms
54,020 KB
testcase_29 AC 136 ms
53,776 KB
testcase_30 WA -
testcase_31 AC 138 ms
54,020 KB
testcase_32 AC 134 ms
54,156 KB
testcase_33 AC 135 ms
53,828 KB
testcase_34 WA -
testcase_35 AC 126 ms
52,636 KB
testcase_36 AC 134 ms
53,996 KB
testcase_37 AC 134 ms
54,060 KB
testcase_38 AC 135 ms
53,884 KB
testcase_39 AC 136 ms
53,768 KB
testcase_40 WA -
testcase_41 AC 133 ms
53,692 KB
testcase_42 AC 136 ms
54,088 KB
testcase_43 AC 137 ms
53,912 KB
testcase_44 AC 136 ms
53,768 KB
testcase_45 AC 135 ms
53,880 KB
testcase_46 AC 136 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	static int[] tatesum,yokosum;
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String mae  = sc.next();
		int n = sc.nextInt();
		String ato = sc.next();
		if(n==0){
			if(mae.equals(ato)){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}else if(n==1){
			StringBuilder a = new StringBuilder(mae);
			char aa = a.charAt(0);
			a.deleteCharAt(0);
			a.insert(0, aa);
			StringBuilder b = new StringBuilder(mae);
			char bb = b.charAt(0);
			b.deleteCharAt(0);
			b.insert(0, bb);
			if(mae.equals(a.toString()) || mae.equals(b.toString())){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}else{
			int countmae =0;
			for(int i=0;i<3;i++){
				if(mae.charAt(i)=='o') countmae++;
			}
			int countato=0;
			for(int i=0;i<3;i++){
				if(ato.charAt(i)=='o') countato++;
			}
			if(countato==countmae){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}
	}
}
0