結果

問題 No.2278 Time Bomb Game 2
ユーザー KazunKazun
提出日時 2023-04-21 22:10:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-11-06 15:40:42
合計ジャッジ時間 5,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,696 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 51 ms
62,976 KB
testcase_08 AC 44 ms
60,368 KB
testcase_09 AC 49 ms
66,432 KB
testcase_10 WA -
testcase_11 AC 61 ms
73,984 KB
testcase_12 AC 60 ms
73,984 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 59 ms
74,880 KB
testcase_17 AC 55 ms
74,240 KB
testcase_18 AC 57 ms
74,036 KB
testcase_19 WA -
testcase_20 AC 50 ms
67,712 KB
testcase_21 AC 52 ms
72,832 KB
testcase_22 AC 49 ms
67,840 KB
testcase_23 AC 59 ms
74,752 KB
testcase_24 AC 56 ms
74,368 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 54 ms
73,088 KB
testcase_32 AC 54 ms
72,576 KB
testcase_33 AC 55 ms
74,240 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 54 ms
74,112 KB
testcase_37 AC 56 ms
73,856 KB
testcase_38 WA -
testcase_39 AC 58 ms
74,368 KB
testcase_40 AC 51 ms
68,096 KB
testcase_41 AC 55 ms
73,960 KB
testcase_42 AC 49 ms
67,788 KB
testcase_43 WA -
testcase_44 AC 56 ms
74,240 KB
testcase_45 WA -
testcase_46 AC 50 ms
67,840 KB
testcase_47 AC 57 ms
74,368 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 50 ms
68,096 KB
testcase_52 WA -
testcase_53 AC 58 ms
74,624 KB
testcase_54 AC 51 ms
68,224 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 58 ms
74,496 KB
testcase_58 AC 50 ms
67,584 KB
testcase_59 AC 58 ms
74,368 KB
testcase_60 AC 49 ms
67,584 KB
testcase_61 AC 55 ms
74,240 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 50 ms
68,096 KB
testcase_66 AC 50 ms
67,712 KB
testcase_67 AC 51 ms
67,584 KB
testcase_68 AC 53 ms
72,576 KB
testcase_69 AC 50 ms
67,764 KB
testcase_70 AC 49 ms
67,756 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