結果

問題 No.2278 Time Bomb Game 2
ユーザー ks2mks2m
提出日時 2023-04-21 23:46:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,716 bytes
コンパイル時間 3,924 ms
コンパイル使用メモリ 76,772 KB
実行使用メモリ 69,032 KB
最終ジャッジ日時 2024-11-06 17:08:16
合計ジャッジ時間 12,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,388 KB
testcase_01 AC 53 ms
49,900 KB
testcase_02 AC 55 ms
49,824 KB
testcase_03 AC 55 ms
50,308 KB
testcase_04 AC 56 ms
50,124 KB
testcase_05 AC 57 ms
50,284 KB
testcase_06 AC 63 ms
49,832 KB
testcase_07 AC 81 ms
51,408 KB
testcase_08 AC 70 ms
50,964 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 91 ms
51,580 KB
testcase_12 AC 98 ms
55,104 KB
testcase_13 WA -
testcase_14 AC 93 ms
52,160 KB
testcase_15 WA -
testcase_16 AC 94 ms
51,920 KB
testcase_17 WA -
testcase_18 AC 89 ms
51,560 KB
testcase_19 AC 101 ms
55,824 KB
testcase_20 AC 80 ms
51,528 KB
testcase_21 AC 89 ms
51,624 KB
testcase_22 AC 93 ms
51,344 KB
testcase_23 AC 87 ms
51,588 KB
testcase_24 AC 90 ms
51,512 KB
testcase_25 AC 88 ms
51,060 KB
testcase_26 AC 89 ms
51,644 KB
testcase_27 AC 88 ms
51,312 KB
testcase_28 AC 87 ms
51,344 KB
testcase_29 AC 87 ms
51,376 KB
testcase_30 AC 93 ms
51,228 KB
testcase_31 AC 87 ms
51,244 KB
testcase_32 AC 87 ms
51,780 KB
testcase_33 AC 90 ms
51,388 KB
testcase_34 AC 88 ms
51,688 KB
testcase_35 AC 92 ms
51,312 KB
testcase_36 AC 93 ms
51,552 KB
testcase_37 AC 99 ms
54,180 KB
testcase_38 AC 102 ms
59,820 KB
testcase_39 AC 99 ms
52,832 KB
testcase_40 AC 113 ms
67,704 KB
testcase_41 AC 97 ms
56,584 KB
testcase_42 AC 96 ms
64,452 KB
testcase_43 AC 90 ms
58,780 KB
testcase_44 AC 108 ms
66,344 KB
testcase_45 AC 94 ms
63,760 KB
testcase_46 AC 109 ms
65,532 KB
testcase_47 AC 97 ms
56,164 KB
testcase_48 AC 97 ms
53,884 KB
testcase_49 AC 93 ms
58,512 KB
testcase_50 AC 95 ms
51,400 KB
testcase_51 AC 88 ms
51,524 KB
testcase_52 AC 87 ms
51,428 KB
testcase_53 AC 88 ms
51,344 KB
testcase_54 AC 91 ms
51,540 KB
testcase_55 AC 87 ms
51,372 KB
testcase_56 AC 87 ms
51,156 KB
testcase_57 AC 87 ms
51,460 KB
testcase_58 AC 91 ms
51,476 KB
testcase_59 AC 92 ms
51,440 KB
testcase_60 AC 87 ms
51,520 KB
testcase_61 AC 88 ms
51,468 KB
testcase_62 AC 89 ms
51,448 KB
testcase_63 AC 91 ms
51,320 KB
testcase_64 AC 108 ms
61,616 KB
testcase_65 AC 103 ms
67,752 KB
testcase_66 AC 109 ms
61,824 KB
testcase_67 AC 92 ms
54,048 KB
testcase_68 AC 90 ms
52,416 KB
testcase_69 AC 111 ms
67,508 KB
testcase_70 AC 102 ms
69,032 KB
testcase_71 AC 53 ms
50,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	static int n;
	static char[] s;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		int k = Integer.parseInt(sa[1]) - 1;
		int t = Integer.parseInt(sa[2]);
		s = br.readLine().toCharArray();
		br.close();

		char res = dfs(k, t, -2);
		if (res == 'A') {
			System.out.println("Alice");
		} else {
			System.out.println("Bob");
		}
	}

	static char dfs(int k, int t, int p) {
		if (t == 0) {
			if (s[k] == 'A') {
				return 'B';
			} else {
				return 'A';
			}
		}
		char c = s[k];
		if (t % 2 == 1) {
			if (p != k - 1 && k > 0) {
				char l = s[k - 1];
				if (l != c) {
					if (k == 1 || s[k - 2] == c) {
						return c;
					}
					if (k < n - 1 && s[k + 1] == c) {
						return c;
					}
				}
				char res = dfs(k - 1, t - 1, k);
				if (res == c) {
					return c;
				}
			}
			if (p != k + 1 && k < n - 1) {
				char r = s[k + 1];
				if (r != c) {
					if (k == n - 2 || s[k + 2] == c) {
						return c;
					}
					if (k > 0 && s[k - 1] == c) {
						return c;
					}
				}
				char res = dfs(k + 1, t - 1, k);
				if (res == c) {
					return c;
				}
			}
		} else {
			if (k > 0 && s[k - 1] == c ||
					k < n - 1 && s[k + 1] == c) {
				if (p != k - 1 && k > 1) {
					char res = dfs(k - 1, t - 1, k);
					if (res == c) {
						return c;
					}
				}
				if (p != k + 1 && k < n - 2) {
					char res = dfs(k + 1, t - 1, k);
					if (res == c) {
						return c;
					}
				}
			}
		}
		if (s[k] == 'A') {
			return 'B';
		} else {
			return 'A';
		}
	}
}
0