結果

問題 No.197 手品
ユーザー keitaro9mlkeitaro9ml
提出日時 2015-05-02 11:24:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,224 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-27 09:12:19
合計ジャッジ時間 9,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,592 KB
testcase_01 AC 125 ms
41,388 KB
testcase_02 AC 127 ms
41,260 KB
testcase_03 AC 128 ms
41,416 KB
testcase_04 AC 128 ms
41,344 KB
testcase_05 AC 126 ms
41,396 KB
testcase_06 AC 113 ms
40,176 KB
testcase_07 AC 128 ms
41,620 KB
testcase_08 AC 128 ms
41,600 KB
testcase_09 AC 111 ms
40,044 KB
testcase_10 AC 123 ms
41,532 KB
testcase_11 AC 131 ms
41,596 KB
testcase_12 AC 128 ms
41,228 KB
testcase_13 AC 126 ms
41,700 KB
testcase_14 AC 127 ms
41,420 KB
testcase_15 AC 114 ms
40,408 KB
testcase_16 AC 127 ms
41,340 KB
testcase_17 AC 124 ms
41,316 KB
testcase_18 AC 128 ms
41,304 KB
testcase_19 AC 128 ms
41,388 KB
testcase_20 AC 125 ms
41,316 KB
testcase_21 AC 113 ms
39,952 KB
testcase_22 AC 125 ms
41,660 KB
testcase_23 AC 127 ms
41,464 KB
testcase_24 AC 124 ms
41,280 KB
testcase_25 AC 123 ms
41,472 KB
testcase_26 WA -
testcase_27 AC 126 ms
41,660 KB
testcase_28 AC 127 ms
41,420 KB
testcase_29 AC 123 ms
41,228 KB
testcase_30 AC 127 ms
41,520 KB
testcase_31 AC 127 ms
41,328 KB
testcase_32 AC 128 ms
41,196 KB
testcase_33 AC 130 ms
41,588 KB
testcase_34 WA -
testcase_35 AC 115 ms
40,024 KB
testcase_36 AC 114 ms
40,028 KB
testcase_37 AC 130 ms
41,472 KB
testcase_38 AC 114 ms
40,120 KB
testcase_39 AC 126 ms
41,468 KB
testcase_40 AC 112 ms
40,172 KB
testcase_41 AC 126 ms
41,264 KB
testcase_42 AC 125 ms
41,524 KB
testcase_43 AC 126 ms
41,176 KB
testcase_44 AC 129 ms
41,720 KB
testcase_45 AC 112 ms
40,132 KB
testcase_46 AC 127 ms
41,336 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[]>();
		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