結果

問題 No.2278 Time Bomb Game 2
ユーザー 👑 KazunKazun
提出日時 2023-04-21 22:10:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-04-24 08:17:20
合計ジャッジ時間 6,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 51 ms
62,976 KB
testcase_08 AC 48 ms
60,288 KB
testcase_09 AC 53 ms
66,176 KB
testcase_10 WA -
testcase_11 AC 63 ms
73,728 KB
testcase_12 AC 60 ms
73,472 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 66 ms
74,368 KB
testcase_17 AC 61 ms
73,856 KB
testcase_18 AC 63 ms
74,112 KB
testcase_19 WA -
testcase_20 AC 54 ms
67,584 KB
testcase_21 AC 58 ms
72,320 KB
testcase_22 AC 54 ms
67,840 KB
testcase_23 AC 63 ms
74,240 KB
testcase_24 AC 60 ms
74,240 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 59 ms
72,704 KB
testcase_32 AC 58 ms
72,704 KB
testcase_33 AC 62 ms
74,240 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 61 ms
73,472 KB
testcase_37 AC 64 ms
74,368 KB
testcase_38 WA -
testcase_39 AC 66 ms
74,624 KB
testcase_40 AC 55 ms
67,456 KB
testcase_41 AC 63 ms
73,984 KB
testcase_42 AC 55 ms
67,584 KB
testcase_43 WA -
testcase_44 AC 61 ms
73,856 KB
testcase_45 WA -
testcase_46 AC 53 ms
67,456 KB
testcase_47 AC 64 ms
74,240 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 55 ms
67,712 KB
testcase_52 WA -
testcase_53 AC 62 ms
73,856 KB
testcase_54 AC 55 ms
67,328 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 64 ms
74,240 KB
testcase_58 AC 56 ms
67,584 KB
testcase_59 AC 65 ms
73,856 KB
testcase_60 AC 56 ms
67,456 KB
testcase_61 AC 63 ms
74,112 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 55 ms
67,584 KB
testcase_66 AC 55 ms
67,584 KB
testcase_67 AC 54 ms
67,456 KB
testcase_68 AC 59 ms
72,448 KB
testcase_69 AC 55 ms
67,584 KB
testcase_70 AC 55 ms
67,456 KB
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K,T=map(int,input().split())
    C=["*"]+list(input())+["*"]

    for i in range(N):
        if C[i]=="B" and (T+K)%2==i%2 and abs(K-i)<=T:
            return True
    return False

#==================================================
print("Alice" if solve() else "Bob")
0