結果

問題 No.2278 Time Bomb Game 2
ユーザー jianglyjiangly
提出日時 2023-04-21 21:40:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 55,264 KB
最終ジャッジ日時 2024-11-06 17:01:02
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,960 KB
testcase_01 AC 39 ms
53,924 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 38 ms
53,012 KB
testcase_04 AC 38 ms
52,024 KB
testcase_05 AC 38 ms
52,280 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 40 ms
54,320 KB
testcase_08 AC 39 ms
52,872 KB
testcase_09 AC 39 ms
53,844 KB
testcase_10 AC 38 ms
53,548 KB
testcase_11 AC 39 ms
54,300 KB
testcase_12 AC 39 ms
53,988 KB
testcase_13 AC 40 ms
54,768 KB
testcase_14 AC 40 ms
54,568 KB
testcase_15 AC 39 ms
54,116 KB
testcase_16 AC 40 ms
54,668 KB
testcase_17 AC 40 ms
53,820 KB
testcase_18 AC 40 ms
54,520 KB
testcase_19 AC 41 ms
54,348 KB
testcase_20 AC 40 ms
54,660 KB
testcase_21 AC 38 ms
53,920 KB
testcase_22 AC 38 ms
53,348 KB
testcase_23 AC 40 ms
54,340 KB
testcase_24 AC 41 ms
54,716 KB
testcase_25 AC 41 ms
54,660 KB
testcase_26 AC 41 ms
53,816 KB
testcase_27 AC 40 ms
53,740 KB
testcase_28 AC 40 ms
54,328 KB
testcase_29 AC 39 ms
53,796 KB
testcase_30 AC 39 ms
53,804 KB
testcase_31 AC 40 ms
54,772 KB
testcase_32 AC 41 ms
54,148 KB
testcase_33 AC 41 ms
53,788 KB
testcase_34 AC 40 ms
54,552 KB
testcase_35 AC 40 ms
54,452 KB
testcase_36 AC 41 ms
53,464 KB
testcase_37 AC 39 ms
54,020 KB
testcase_38 AC 39 ms
53,816 KB
testcase_39 AC 38 ms
53,452 KB
testcase_40 AC 38 ms
54,208 KB
testcase_41 AC 39 ms
53,680 KB
testcase_42 AC 39 ms
54,764 KB
testcase_43 AC 40 ms
54,912 KB
testcase_44 AC 39 ms
53,568 KB
testcase_45 AC 40 ms
54,644 KB
testcase_46 AC 39 ms
53,628 KB
testcase_47 AC 39 ms
54,328 KB
testcase_48 AC 40 ms
54,316 KB
testcase_49 AC 40 ms
54,872 KB
testcase_50 AC 39 ms
54,416 KB
testcase_51 AC 40 ms
53,936 KB
testcase_52 AC 40 ms
54,848 KB
testcase_53 AC 40 ms
54,184 KB
testcase_54 AC 40 ms
53,864 KB
testcase_55 AC 40 ms
54,052 KB
testcase_56 AC 39 ms
54,316 KB
testcase_57 AC 40 ms
54,708 KB
testcase_58 AC 40 ms
53,676 KB
testcase_59 AC 40 ms
54,692 KB
testcase_60 AC 39 ms
54,096 KB
testcase_61 AC 39 ms
53,728 KB
testcase_62 AC 39 ms
54,072 KB
testcase_63 AC 40 ms
53,976 KB
testcase_64 AC 40 ms
54,940 KB
testcase_65 AC 40 ms
53,316 KB
testcase_66 AC 40 ms
54,532 KB
testcase_67 AC 40 ms
53,268 KB
testcase_68 AC 41 ms
55,128 KB
testcase_69 AC 41 ms
55,264 KB
testcase_70 AC 39 ms
53,792 KB
testcase_71 AC 39 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, T = map(int, input().split())
S = input()

K -= 1

def win(K, T) :
    if T == 0 :
        return False
    oth = chr(ord(S[K]) ^ 3)
    l = S[:K].rfind(oth)
    r = S.find(oth, K)
    if r == -1 :
        r = N
    if r - l > 2 :
        if l != -1 and (K - l - T) % 2 == 0 and K - l <= T :
            return True
        if r != N and (r - K - T) % 2 == 0 and r - K <= T :
            return True
        return False
    if T % 2 == 0 :
        return False
    return (l != -1 and not win(K-1, T-1)) or (r != N and not win(K+1,T-1))

if win(K, T) :
    res = S[K]
else :
    res = chr(ord(S[K]) ^ 3)
if res == 'A' :
    print('Alice')
else :
    print('Bob')
0