結果

問題 No.197 手品
ユーザー spaciaspacia
提出日時 2016-01-04 22:13:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 1,000 ms
コード長 1,080 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-07-20 03:45:12
合計ジャッジ時間 6,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,144 KB
testcase_01 AC 58 ms
50,124 KB
testcase_02 AC 56 ms
49,936 KB
testcase_03 AC 57 ms
50,288 KB
testcase_04 AC 59 ms
50,072 KB
testcase_05 AC 61 ms
50,256 KB
testcase_06 AC 60 ms
50,056 KB
testcase_07 AC 56 ms
50,104 KB
testcase_08 AC 60 ms
50,228 KB
testcase_09 AC 62 ms
49,852 KB
testcase_10 AC 59 ms
49,812 KB
testcase_11 AC 57 ms
49,744 KB
testcase_12 AC 57 ms
50,372 KB
testcase_13 AC 57 ms
50,228 KB
testcase_14 AC 56 ms
50,212 KB
testcase_15 AC 55 ms
50,192 KB
testcase_16 AC 56 ms
50,172 KB
testcase_17 AC 57 ms
49,872 KB
testcase_18 AC 56 ms
50,168 KB
testcase_19 AC 56 ms
50,168 KB
testcase_20 AC 56 ms
50,184 KB
testcase_21 AC 56 ms
50,176 KB
testcase_22 AC 56 ms
50,088 KB
testcase_23 AC 60 ms
50,232 KB
testcase_24 AC 60 ms
50,020 KB
testcase_25 AC 68 ms
50,168 KB
testcase_26 AC 60 ms
49,868 KB
testcase_27 AC 55 ms
50,164 KB
testcase_28 AC 57 ms
50,188 KB
testcase_29 AC 55 ms
49,836 KB
testcase_30 AC 55 ms
50,172 KB
testcase_31 AC 62 ms
50,060 KB
testcase_32 AC 56 ms
50,100 KB
testcase_33 AC 63 ms
50,228 KB
testcase_34 AC 62 ms
50,116 KB
testcase_35 AC 57 ms
49,892 KB
testcase_36 AC 67 ms
50,256 KB
testcase_37 AC 62 ms
50,208 KB
testcase_38 AC 59 ms
49,840 KB
testcase_39 AC 56 ms
50,068 KB
testcase_40 AC 55 ms
50,252 KB
testcase_41 AC 56 ms
50,260 KB
testcase_42 AC 55 ms
50,232 KB
testcase_43 AC 57 ms
50,236 KB
testcase_44 AC 64 ms
50,144 KB
testcase_45 AC 58 ms
50,304 KB
testcase_46 AC 59 ms
49,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean solve (String s , String t , int n) {
		int cnt1 = 0 , cnt2 = 0;
		for (int i = 0; i < s.length(); i++) {
			if (s.charAt(i) == 'o') cnt1++;
			if (t.charAt(i) == 'o') cnt2++;
		}
		if (cnt1 != cnt2) return true;
		if (cnt1 == 0 || cnt1 == 3) return false;
		int p1 = -1 , p2 = -1;
		if (cnt1 == 1) {
			p1 = s.indexOf("o");
			p2 = t.indexOf("o");
		} else {
			p1 = s.indexOf("x");
			p2 = t.indexOf("x");
		}
		if (p1 == 1) {
			if (p2 == 1) {
				return n == 1;
			} else {
				return n == 0;
			}
		} else {
			if (p2 == 1) {
				return n == 0;
			} else {
				return p1 == p2 ? false : n < 2;
			}
		}
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String s = br.readLine();
		int n = Integer.parseInt(br.readLine());
		String t = br.readLine();
		
		out(solve(s , t , n) ? "SUCCESS" : "FAILURE");
		
	}
}
0