結果

問題 No.2278 Time Bomb Game 2
ユーザー tamatotamato
提出日時 2023-04-21 22:28:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,659 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 89,692 KB
最終ジャッジ日時 2024-11-06 15:58:30
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,088 KB
testcase_01 AC 39 ms
52,972 KB
testcase_02 AC 40 ms
52,264 KB
testcase_03 AC 40 ms
53,364 KB
testcase_04 AC 40 ms
52,200 KB
testcase_05 AC 40 ms
52,360 KB
testcase_06 AC 50 ms
67,156 KB
testcase_07 AC 61 ms
80,560 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 45 ms
59,984 KB
testcase_11 AC 73 ms
89,504 KB
testcase_12 AC 64 ms
76,368 KB
testcase_13 AC 46 ms
60,436 KB
testcase_14 AC 72 ms
89,524 KB
testcase_15 AC 45 ms
60,916 KB
testcase_16 AC 45 ms
59,728 KB
testcase_17 AC 72 ms
89,404 KB
testcase_18 AC 45 ms
61,200 KB
testcase_19 AC 73 ms
89,692 KB
testcase_20 AC 66 ms
87,224 KB
testcase_21 AC 40 ms
54,008 KB
testcase_22 AC 63 ms
79,720 KB
testcase_23 AC 42 ms
54,556 KB
testcase_24 AC 41 ms
55,036 KB
testcase_25 AC 66 ms
88,152 KB
testcase_26 AC 66 ms
86,976 KB
testcase_27 AC 66 ms
87,248 KB
testcase_28 AC 66 ms
87,152 KB
testcase_29 AC 67 ms
86,780 KB
testcase_30 AC 67 ms
83,188 KB
testcase_31 AC 41 ms
55,312 KB
testcase_32 AC 46 ms
54,304 KB
testcase_33 AC 41 ms
54,376 KB
testcase_34 AC 66 ms
87,812 KB
testcase_35 AC 69 ms
87,172 KB
testcase_36 AC 41 ms
54,992 KB
testcase_37 AC 68 ms
87,312 KB
testcase_38 AC 67 ms
83,708 KB
testcase_39 AC 44 ms
59,792 KB
testcase_40 AC 65 ms
76,684 KB
testcase_41 AC 45 ms
59,552 KB
testcase_42 AC 64 ms
76,544 KB
testcase_43 AC 69 ms
87,784 KB
testcase_44 AC 44 ms
59,564 KB
testcase_45 AC 69 ms
87,860 KB
testcase_46 AC 68 ms
78,920 KB
testcase_47 AC 45 ms
60,044 KB
testcase_48 AC 45 ms
59,488 KB
testcase_49 AC 68 ms
84,208 KB
testcase_50 AC 68 ms
87,160 KB
testcase_51 AC 67 ms
87,316 KB
testcase_52 AC 41 ms
54,712 KB
testcase_53 AC 41 ms
53,752 KB
testcase_54 AC 42 ms
54,636 KB
testcase_55 AC 42 ms
54,884 KB
testcase_56 AC 65 ms
86,704 KB
testcase_57 AC 41 ms
53,864 KB
testcase_58 AC 66 ms
87,424 KB
testcase_59 AC 41 ms
54,044 KB
testcase_60 AC 68 ms
87,540 KB
testcase_61 AC 67 ms
86,912 KB
testcase_62 AC 42 ms
54,620 KB
testcase_63 AC 61 ms
75,480 KB
testcase_64 AC 70 ms
84,716 KB
testcase_65 AC 72 ms
88,032 KB
testcase_66 AC 70 ms
87,600 KB
testcase_67 AC 47 ms
59,400 KB
testcase_68 AC 71 ms
87,644 KB
testcase_69 AC 45 ms
59,576 KB
testcase_70 AC 45 ms
60,060 KB
testcase_71 AC 41 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

N, K, T = map(int, input().split())
C = input().rstrip('\n')

K -= 1
flg = 0
if C[K] == "B":
    C_new = []
    for c in C:
        if c == "A":
            C_new.append("B")
        else:
            C_new.append("A")
    C = "".join(C_new)
    flg = 1
C = C[max(0, K - T): min(N, K + T + 1)]
K = min(K, T)

exist_adj = 0
if K:
    if C[K - 1] == "A":
        exist_adj = 1
if K + 1 < len(C):
    if C[K + 1] == "A":
        exist_adj = 1

if not exist_adj:
    if K & 1 == (K - T) & 1:
        ans = 0
    else:
        if T == 1:
            ans = 1
        else:
            ans = 1
            # left
            if K - 2 >= 0:
                if C[K - 2] == "B":
                    for i in range(K - 3, -1, -1):
                        if C[i] == "A":
                            if i & 1 == (K - T) & 1:
                                ans = 0
                            break
            # right
            if K + 2 < len(C):
                if C[K + 2] == "B":
                    for i in range(K + 3, len(C)):
                        if C[i] == "A":
                            if i & 1 == (K - T) & 1:
                                ans = 0
                            break
else:
    ok = 0
    for i in range(K - 1, -1, -1):
        if C[i] == "B":
            if i & 1 == (K - T) & 1:
                ok = 1
            break
    for i in range(K, len(C)):
        if C[i] == "B":
            if i & 1 == (K - T) & 1:
                ok = 1
            break
    if ok:
        ans = 1
    else:
        ans = 0

if flg:
    ans ^= 1
if ans:
    print("Alice")
else:
    print("Bob")
0