結果

問題 No.197 手品
ユーザー keitaro9mlkeitaro9ml
提出日時 2015-05-02 11:26:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 1,243 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-20 03:38:59
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,924 KB
testcase_01 AC 140 ms
53,836 KB
testcase_02 AC 146 ms
54,128 KB
testcase_03 AC 137 ms
54,104 KB
testcase_04 AC 142 ms
54,068 KB
testcase_05 AC 136 ms
53,964 KB
testcase_06 AC 137 ms
53,648 KB
testcase_07 AC 140 ms
54,036 KB
testcase_08 AC 147 ms
54,260 KB
testcase_09 AC 139 ms
53,988 KB
testcase_10 AC 138 ms
53,700 KB
testcase_11 AC 137 ms
53,936 KB
testcase_12 AC 137 ms
53,876 KB
testcase_13 AC 137 ms
53,720 KB
testcase_14 AC 138 ms
53,836 KB
testcase_15 AC 137 ms
53,944 KB
testcase_16 AC 138 ms
54,124 KB
testcase_17 AC 136 ms
54,212 KB
testcase_18 AC 137 ms
41,260 KB
testcase_19 AC 135 ms
41,176 KB
testcase_20 AC 135 ms
41,668 KB
testcase_21 AC 138 ms
41,356 KB
testcase_22 AC 135 ms
41,272 KB
testcase_23 AC 136 ms
41,304 KB
testcase_24 AC 136 ms
41,408 KB
testcase_25 AC 138 ms
41,472 KB
testcase_26 AC 137 ms
41,300 KB
testcase_27 AC 138 ms
41,744 KB
testcase_28 AC 135 ms
41,072 KB
testcase_29 AC 138 ms
41,116 KB
testcase_30 AC 154 ms
41,608 KB
testcase_31 AC 137 ms
40,940 KB
testcase_32 AC 140 ms
41,228 KB
testcase_33 AC 145 ms
41,736 KB
testcase_34 AC 145 ms
41,332 KB
testcase_35 AC 138 ms
41,428 KB
testcase_36 AC 147 ms
41,656 KB
testcase_37 AC 153 ms
41,520 KB
testcase_38 AC 150 ms
41,376 KB
testcase_39 AC 153 ms
41,264 KB
testcase_40 AC 151 ms
41,224 KB
testcase_41 AC 144 ms
41,356 KB
testcase_42 AC 154 ms
41,008 KB
testcase_43 AC 147 ms
41,480 KB
testcase_44 AC 138 ms
41,276 KB
testcase_45 AC 138 ms
41,280 KB
testcase_46 AC 139 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
 
public class Main {
	
	static char[] Sb;
	static char[] Sa;
	static int N;
	
	private static void solve() {
		int sbo = 0;
		int sao = 0;
		
		for(int i = 0; i<3; i++){
			if(Sb[i] == 'o'){
				sbo++;
			}
			if(Sa[i] == 'o'){
				sao++;
			}
		}
		
		if(sbo != sao){
			System.out.println("SUCCESS");
			return;
		}
		
		if(N>=2){
			System.out.println("FAILURE");
			return;
		}
		
		ArrayList<char[]> list = new ArrayList<char[]>();
		if(N == 0){
			list.add(Sb);
		}
		
		if(N == 1){
			list.add(new char[]{Sb[1], Sb[0], Sb[2]});
			list.add(new char[]{Sb[0], Sb[2], Sb[1]});
		}
		
		Iterator<char[]> ite = list.iterator();
		while(ite.hasNext()){
			char[] c = ite.next();
			if(c[0] == Sa[0] && c[1] == Sa[1] && c[2] == Sa[2]){
				System.out.println("FAILURE");
				return;
			}
		}
		
		System.out.println("SUCCESS");
		return;		
	}
	
	public static void main(String[] args) {
		read();
		
		solve();
	}
	
	public static void read(){
		Scanner scan = new Scanner(new InputStreamReader(System.in));
		
		Sb = scan.next().toCharArray();
		N = scan.nextInt();
		Sa = scan.next().toCharArray();
		
		scan.close();
	}
	
}
0