結果

問題 No.2278 Time Bomb Game 2
ユーザー minimumminimum
提出日時 2023-04-21 22:14:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 66,340 KB
最終ジャッジ日時 2024-11-06 15:44:22
合計ジャッジ時間 5,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,324 KB
testcase_01 AC 37 ms
52,624 KB
testcase_02 AC 38 ms
53,040 KB
testcase_03 AC 38 ms
53,552 KB
testcase_04 AC 40 ms
53,568 KB
testcase_05 AC 38 ms
52,008 KB
testcase_06 WA -
testcase_07 AC 39 ms
54,116 KB
testcase_08 AC 37 ms
52,944 KB
testcase_09 AC 38 ms
54,504 KB
testcase_10 AC 43 ms
60,416 KB
testcase_11 AC 43 ms
59,784 KB
testcase_12 WA -
testcase_13 AC 43 ms
60,768 KB
testcase_14 AC 44 ms
60,760 KB
testcase_15 AC 43 ms
61,348 KB
testcase_16 AC 43 ms
59,476 KB
testcase_17 AC 44 ms
60,236 KB
testcase_18 AC 46 ms
59,924 KB
testcase_19 AC 44 ms
62,084 KB
testcase_20 AC 40 ms
53,916 KB
testcase_21 AC 40 ms
55,312 KB
testcase_22 AC 40 ms
53,480 KB
testcase_23 AC 40 ms
53,804 KB
testcase_24 AC 40 ms
53,612 KB
testcase_25 AC 39 ms
53,948 KB
testcase_26 AC 40 ms
53,224 KB
testcase_27 AC 40 ms
54,256 KB
testcase_28 AC 40 ms
53,612 KB
testcase_29 AC 40 ms
53,980 KB
testcase_30 AC 41 ms
54,328 KB
testcase_31 AC 39 ms
55,296 KB
testcase_32 AC 40 ms
53,800 KB
testcase_33 AC 39 ms
54,212 KB
testcase_34 AC 40 ms
53,768 KB
testcase_35 AC 40 ms
53,936 KB
testcase_36 AC 40 ms
54,088 KB
testcase_37 AC 43 ms
60,320 KB
testcase_38 AC 43 ms
62,424 KB
testcase_39 AC 43 ms
60,480 KB
testcase_40 AC 46 ms
66,100 KB
testcase_41 AC 43 ms
61,972 KB
testcase_42 WA -
testcase_43 AC 44 ms
62,476 KB
testcase_44 AC 45 ms
64,940 KB
testcase_45 AC 44 ms
64,252 KB
testcase_46 AC 44 ms
64,316 KB
testcase_47 AC 44 ms
60,680 KB
testcase_48 AC 41 ms
59,844 KB
testcase_49 AC 43 ms
61,664 KB
testcase_50 AC 40 ms
53,896 KB
testcase_51 AC 41 ms
53,708 KB
testcase_52 AC 39 ms
54,700 KB
testcase_53 AC 39 ms
53,540 KB
testcase_54 AC 39 ms
53,612 KB
testcase_55 AC 40 ms
54,960 KB
testcase_56 AC 41 ms
55,028 KB
testcase_57 AC 39 ms
54,684 KB
testcase_58 AC 40 ms
54,324 KB
testcase_59 AC 39 ms
53,944 KB
testcase_60 AC 40 ms
55,184 KB
testcase_61 AC 39 ms
55,032 KB
testcase_62 AC 39 ms
54,388 KB
testcase_63 AC 39 ms
54,536 KB
testcase_64 WA -
testcase_65 AC 45 ms
65,856 KB
testcase_66 AC 45 ms
65,968 KB
testcase_67 AC 46 ms
65,980 KB
testcase_68 AC 40 ms
54,228 KB
testcase_69 AC 39 ms
53,204 KB
testcase_70 AC 38 ms
54,240 KB
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = float('inf')
N, K, T = map(int, input().split())
S = input()
if 'A' not in S:
    print("Bob")
if 'B' not in S:
    print("Alice")


def f(S, i):
    res = []
    lres = INF
    for l in range(i - 1, -1, -1):
        if S[l] != S[i]:
            lres = abs(l - i)
            break
    rres = INF
    for r in range(i, N):
        if S[r] != S[i]:
            rres = abs(r - i)
            break
    return min(lres, rres)


K -= 1

if S[K] == 'A':
    d = f(S, K)
    if T < d:
        print("Bob")
    else:
        if (T - d) % 2:
            print("Bob")
        else:
            print("Alice")
else:
    d = f(S, K)
    if T < d:
        print("Alice")
    else:
        if (T - d) % 2:
            print("Alice")
        else:
            print("Bob")
0