結果
| 問題 |
No.38 赤青白ブロック
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-10 09:21:39 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 494 bytes |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 82,444 KB |
| 実行使用メモリ | 70,944 KB |
| 最終ジャッジ日時 | 2024-09-19 17:10:07 |
| 合計ジャッジ時間 | 2,794 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 27 |
ソースコード
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,readline().split())
s = input()
L = 30
ans = 12
R = []
B = []
dfs(0,0)
print(ans)
convexineq