結果

問題 No.38 赤青白ブロック
ユーザー convexineqconvexineq
提出日時 2020-12-10 09:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,684 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2023-10-19 21:06:15
合計ジャッジ時間 2,229 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,456 KB
testcase_01 AC 98 ms
75,784 KB
testcase_02 AC 38 ms
53,456 KB
testcase_03 AC 39 ms
53,456 KB
testcase_04 AC 38 ms
53,456 KB
testcase_05 AC 39 ms
53,456 KB
testcase_06 AC 53 ms
63,900 KB
testcase_07 AC 39 ms
53,456 KB
testcase_08 AC 39 ms
53,456 KB
testcase_09 AC 39 ms
53,456 KB
testcase_10 AC 38 ms
53,456 KB
testcase_11 AC 38 ms
53,456 KB
testcase_12 AC 38 ms
53,456 KB
testcase_13 AC 38 ms
53,456 KB
testcase_14 AC 38 ms
53,456 KB
testcase_15 AC 38 ms
53,456 KB
testcase_16 AC 39 ms
53,456 KB
testcase_17 AC 39 ms
53,456 KB
testcase_18 AC 76 ms
73,708 KB
testcase_19 AC 39 ms
53,456 KB
testcase_20 AC 39 ms
53,456 KB
testcase_21 AC 39 ms
53,456 KB
testcase_22 AC 68 ms
70,088 KB
testcase_23 AC 38 ms
53,456 KB
testcase_24 AC 39 ms
53,456 KB
testcase_25 AC 39 ms
53,456 KB
testcase_26 AC 39 ms
53,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(i,num):
    global ans
    if i==L:
        ans = max(ans,num)
        return
    if ans >= num+L-i: return
    if s[i]=="W":
        dfs(i+1,num+1)
    elif s[i]=="R" and num-r not in R:
        R.append(num)
        dfs(i+1,num+1)
        R.pop()
    elif s[i]=="B" and num-b not in B:
        B.append(num)
        dfs(i+1,num+1)
        B.pop()
    if s[i] != "W":
        dfs(i+1,num)

r,b = map(int,input().split())
s = input()
L = 30
ans = 12
R = []
B = []
dfs(0,0)
print(ans)
0