結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,420 KB
testcase_01 AC 125 ms
41,432 KB
testcase_02 AC 127 ms
41,432 KB
testcase_03 AC 125 ms
41,408 KB
testcase_04 AC 125 ms
41,388 KB
testcase_05 AC 125 ms
41,440 KB
testcase_06 AC 126 ms
41,380 KB
testcase_07 AC 111 ms
40,024 KB
testcase_08 AC 113 ms
40,320 KB
testcase_09 AC 116 ms
40,548 KB
testcase_10 AC 126 ms
41,552 KB
testcase_11 AC 127 ms
41,544 KB
testcase_12 AC 114 ms
40,020 KB
testcase_13 AC 114 ms
40,032 KB
testcase_14 AC 112 ms
39,976 KB
testcase_15 AC 127 ms
41,316 KB
testcase_16 AC 124 ms
41,128 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 114 ms
40,132 KB
testcase_21 AC 129 ms
41,268 KB
testcase_22 AC 127 ms
41,524 KB
testcase_23 AC 108 ms
39,856 KB
testcase_24 AC 126 ms
41,264 KB
testcase_25 AC 124 ms
41,412 KB
testcase_26 AC 113 ms
41,196 KB
testcase_27 AC 124 ms
41,536 KB
testcase_28 AC 126 ms
41,680 KB
testcase_29 AC 127 ms
41,652 KB
testcase_30 AC 126 ms
41,432 KB
testcase_31 AC 126 ms
41,560 KB
testcase_32 AC 111 ms
39,884 KB
testcase_33 AC 113 ms
40,032 KB
testcase_34 AC 126 ms
40,924 KB
testcase_35 AC 114 ms
39,988 KB
testcase_36 AC 114 ms
40,280 KB
testcase_37 WA -
testcase_38 AC 127 ms
41,452 KB
testcase_39 AC 125 ms
41,540 KB
testcase_40 AC 125 ms
41,404 KB
testcase_41 AC 125 ms
41,524 KB
testcase_42 AC 127 ms
41,376 KB
testcase_43 AC 122 ms
41,148 KB
testcase_44 WA -
testcase_45 AC 126 ms
41,532 KB
testcase_46 AC 129 ms
41,384 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 != 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;
			} else if (before.equals("122") || before.equals("221")) {
				System.out.println("FAILURE");
				return;
			}
			System.out.println("SUCCESS");
			return;
		}

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

	}

}
0