結果
| 問題 | No.38 赤青白ブロック |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-10 09:21:39 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 494 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 92,888 KB |
| 最終ジャッジ日時 | 2026-08-31 05:26:06 |
| 合計ジャッジ時間 | 6,976 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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