結果

問題 No.197 手品
ユーザー kenkooookenkoooo
提出日時 2015-04-28 23:35:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,495 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 56,296 KB
最終ジャッジ日時 2024-06-27 07:15:06
合計ジャッジ時間 9,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,532 KB
testcase_01 AC 123 ms
41,228 KB
testcase_02 AC 114 ms
40,116 KB
testcase_03 AC 124 ms
41,180 KB
testcase_04 AC 124 ms
41,484 KB
testcase_05 AC 110 ms
40,336 KB
testcase_06 AC 129 ms
41,388 KB
testcase_07 AC 130 ms
41,168 KB
testcase_08 AC 125 ms
41,616 KB
testcase_09 AC 129 ms
41,408 KB
testcase_10 AC 128 ms
41,548 KB
testcase_11 AC 125 ms
41,360 KB
testcase_12 WA -
testcase_13 AC 128 ms
41,172 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 130 ms
41,624 KB
testcase_24 AC 129 ms
41,372 KB
testcase_25 AC 131 ms
41,616 KB
testcase_26 AC 126 ms
41,272 KB
testcase_27 WA -
testcase_28 AC 129 ms
41,484 KB
testcase_29 WA -
testcase_30 AC 117 ms
41,360 KB
testcase_31 AC 127 ms
41,460 KB
testcase_32 AC 127 ms
41,488 KB
testcase_33 WA -
testcase_34 AC 129 ms
41,316 KB
testcase_35 AC 127 ms
41,560 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 123 ms
40,920 KB
testcase_39 WA -
testcase_40 AC 128 ms
41,312 KB
testcase_41 WA -
testcase_42 AC 128 ms
41,180 KB
testcase_43 AC 130 ms
41,748 KB
testcase_44 WA -
testcase_45 AC 128 ms
41,036 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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 != bCoins) {
			System.out.println("SUCCESS");
			return;
		}

		if (aCoins == 0 || aCoins == 3) {
			System.out.println("FAILURE");
			return;
		}
		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 (before.equals(after)) {
			if (N % 2 == 0) {
				System.out.println("FAILURE");
				return;
			}
			System.out.println("SUCCESS");
			return;
		}

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

	}

}
0