結果

問題 No.2278 Time Bomb Game 2
ユーザー sotanishysotanishy
提出日時 2023-04-21 22:25:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-11-06 15:54:58
合計ジャッジ時間 6,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,152 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 48 ms
60,672 KB
testcase_07 AC 55 ms
66,560 KB
testcase_08 AC 45 ms
57,216 KB
testcase_09 WA -
testcase_10 AC 53 ms
68,608 KB
testcase_11 AC 58 ms
71,040 KB
testcase_12 AC 57 ms
70,528 KB
testcase_13 AC 52 ms
68,736 KB
testcase_14 AC 59 ms
71,168 KB
testcase_15 AC 52 ms
68,864 KB
testcase_16 AC 54 ms
68,864 KB
testcase_17 AC 58 ms
71,040 KB
testcase_18 AC 54 ms
68,480 KB
testcase_19 AC 58 ms
71,168 KB
testcase_20 AC 55 ms
69,760 KB
testcase_21 AC 48 ms
62,720 KB
testcase_22 AC 53 ms
69,248 KB
testcase_23 AC 48 ms
62,720 KB
testcase_24 AC 48 ms
62,464 KB
testcase_25 AC 57 ms
70,144 KB
testcase_26 AC 55 ms
69,888 KB
testcase_27 AC 55 ms
69,888 KB
testcase_28 AC 56 ms
69,632 KB
testcase_29 AC 56 ms
69,760 KB
testcase_30 AC 57 ms
69,760 KB
testcase_31 AC 48 ms
62,464 KB
testcase_32 AC 47 ms
62,592 KB
testcase_33 AC 48 ms
62,592 KB
testcase_34 AC 57 ms
69,632 KB
testcase_35 AC 58 ms
69,760 KB
testcase_36 AC 48 ms
62,592 KB
testcase_37 AC 58 ms
70,784 KB
testcase_38 AC 58 ms
70,912 KB
testcase_39 AC 52 ms
68,352 KB
testcase_40 AC 58 ms
71,040 KB
testcase_41 AC 52 ms
68,480 KB
testcase_42 AC 57 ms
70,144 KB
testcase_43 AC 58 ms
70,784 KB
testcase_44 AC 54 ms
68,096 KB
testcase_45 AC 58 ms
70,784 KB
testcase_46 AC 59 ms
70,912 KB
testcase_47 AC 53 ms
68,736 KB
testcase_48 AC 54 ms
68,352 KB
testcase_49 AC 60 ms
71,296 KB
testcase_50 AC 56 ms
70,016 KB
testcase_51 AC 58 ms
69,760 KB
testcase_52 AC 47 ms
62,464 KB
testcase_53 AC 49 ms
62,976 KB
testcase_54 AC 47 ms
62,720 KB
testcase_55 AC 46 ms
62,464 KB
testcase_56 AC 54 ms
69,760 KB
testcase_57 AC 47 ms
62,464 KB
testcase_58 AC 55 ms
69,632 KB
testcase_59 AC 48 ms
62,720 KB
testcase_60 AC 58 ms
70,016 KB
testcase_61 AC 54 ms
70,016 KB
testcase_62 AC 49 ms
62,720 KB
testcase_63 AC 53 ms
69,504 KB
testcase_64 AC 59 ms
70,912 KB
testcase_65 AC 58 ms
70,784 KB
testcase_66 AC 58 ms
70,656 KB
testcase_67 AC 54 ms
68,736 KB
testcase_68 WA -
testcase_69 AC 52 ms
62,848 KB
testcase_70 AC 48 ms
62,336 KB
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K, T = map(int, input().split())
c = list(input().rstrip())
K -= 1

flip = False
if c[K] == 'B':
    flip = True
    c = ['B' if x == 'A' else 'A' for x in c]


def answer(ans):
    if ans == 0:
        print("Alice" if not flip else "Bob")
    else:
        print("Bob" if not flip else "Alice")


dist = []
for i in range(K+1, N):
    if i-K > T:
        break
    if c[i] == 'B':
        dist.append(i - K)
        break
for i in range(K)[::-1]:
    if K-i > T:
        break
    if c[i] == 'B':
        dist.append(K - i)
        break

if not dist:
    answer(1)
    exit()

if max(dist) > 1:
    if any(T % 2 == d % 2 for d in dist):
        answer(0)
    else:
        answer(1)
else:
    if T % 2 == 0:
        answer(1)
    else:
        if T == 1:
            answer(0)
        elif K + 2 < N and c[K+1] == c[K+2] == 'B' and K - 2 >= 0 and c[K-1] == c[K-2] == 'B':
            answer(1)
        else:
            answer(0)

0