結果

問題 No.38 赤青白ブロック
ユーザー convexineq
提出日時 2020-12-10 09:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-09-19 17:10:11
合計ジャッジ時間 1,910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

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