結果

問題 No.197 手品
ユーザー kenkooookenkoooo
提出日時 2015-04-28 23:52:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 1,581 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 77,644 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-20 03:34:33
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,996 KB
testcase_01 AC 136 ms
41,188 KB
testcase_02 AC 134 ms
41,344 KB
testcase_03 AC 133 ms
40,948 KB
testcase_04 AC 134 ms
41,064 KB
testcase_05 AC 133 ms
41,360 KB
testcase_06 AC 132 ms
41,036 KB
testcase_07 AC 120 ms
39,844 KB
testcase_08 AC 135 ms
40,980 KB
testcase_09 AC 135 ms
41,008 KB
testcase_10 AC 135 ms
41,248 KB
testcase_11 AC 134 ms
40,872 KB
testcase_12 AC 136 ms
41,192 KB
testcase_13 AC 133 ms
41,312 KB
testcase_14 AC 132 ms
41,456 KB
testcase_15 AC 132 ms
40,916 KB
testcase_16 AC 120 ms
39,948 KB
testcase_17 AC 119 ms
39,948 KB
testcase_18 AC 137 ms
41,364 KB
testcase_19 AC 132 ms
41,228 KB
testcase_20 AC 135 ms
41,144 KB
testcase_21 AC 123 ms
39,908 KB
testcase_22 AC 135 ms
41,136 KB
testcase_23 AC 134 ms
41,156 KB
testcase_24 AC 118 ms
40,252 KB
testcase_25 AC 119 ms
40,160 KB
testcase_26 AC 133 ms
40,928 KB
testcase_27 AC 133 ms
40,944 KB
testcase_28 AC 135 ms
41,324 KB
testcase_29 AC 136 ms
41,076 KB
testcase_30 AC 136 ms
41,192 KB
testcase_31 AC 132 ms
40,920 KB
testcase_32 AC 118 ms
39,932 KB
testcase_33 AC 134 ms
40,920 KB
testcase_34 AC 136 ms
40,804 KB
testcase_35 AC 138 ms
41,204 KB
testcase_36 AC 132 ms
41,184 KB
testcase_37 AC 135 ms
40,916 KB
testcase_38 AC 135 ms
41,196 KB
testcase_39 AC 138 ms
41,272 KB
testcase_40 AC 136 ms
41,120 KB
testcase_41 AC 135 ms
41,100 KB
testcase_42 AC 135 ms
41,168 KB
testcase_43 AC 131 ms
40,892 KB
testcase_44 AC 133 ms
41,032 KB
testcase_45 AC 137 ms
40,920 KB
testcase_46 AC 134 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String before = sc.next();
		int N = sc.nextInt();
		String after = sc.next();
		sc.close();

		int bCoins = 0;
		int aCoins = 0;
		for (int i = 0; i < 3; i++) {
			if (before.charAt(i) == 'o') {
				bCoins++;
			}
			if (after.charAt(i) == 'o') {
				aCoins++;
			}
		}

		if (aCoins == 1) {
			before = before.replaceAll("o", "1").replaceAll("x", "2");
			after = after.replaceAll("o", "1").replaceAll("x", "2");
		} else {
			before = before.replaceAll("o", "2").replaceAll("x", "1");
			after = after.replaceAll("o", "2").replaceAll("x", "1");
		}
		if (aCoins != bCoins) {
			System.out.println("SUCCESS");
			return;
		}

		if (aCoins == 0 || aCoins == 3) {
			System.out.println("FAILURE");
			return;
		}

		if (before.equals("122") || before.equals("221")) {
			if (before.equals(after)) {
				System.out.println("FAILURE");
				return;
			} else if (after.equals("212")) {
				if (N >= 1) {
					System.out.println("FAILURE");
					return;
				}
				System.out.println("SUCCESS");
				return;
			} else {
				if (N >= 2) {
					System.out.println("FAILURE");
					return;
				}
				System.out.println("SUCCESS");
				return;

			}
		} else {
			if (before.equals(after)) {
				if (N == 1) {
					System.out.println("SUCCESS");
					return;
				}
				System.out.println("FAILURE");
				return;
			} else {
				if (N == 0) {
					System.out.println("SUCCESS");
					return;
				}
				System.out.println("FAILURE");
				return;
			}
		}

	}

}
0