結果

問題 No.38 赤青白ブロック
ユーザー titiatitia
提出日時 2021-11-30 17:55:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 880 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-03 13:20:18
合計ジャッジ時間 22,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 798 ms
76,800 KB
testcase_01 AC 880 ms
76,572 KB
testcase_02 AC 741 ms
76,412 KB
testcase_03 AC 867 ms
76,724 KB
testcase_04 AC 783 ms
76,416 KB
testcase_05 AC 731 ms
76,152 KB
testcase_06 AC 776 ms
76,672 KB
testcase_07 AC 812 ms
76,724 KB
testcase_08 AC 722 ms
76,104 KB
testcase_09 AC 790 ms
76,288 KB
testcase_10 AC 654 ms
76,160 KB
testcase_11 AC 698 ms
76,288 KB
testcase_12 AC 707 ms
76,632 KB
testcase_13 AC 674 ms
76,148 KB
testcase_14 AC 793 ms
76,220 KB
testcase_15 AC 759 ms
76,032 KB
testcase_16 AC 751 ms
76,160 KB
testcase_17 AC 767 ms
76,292 KB
testcase_18 AC 761 ms
76,288 KB
testcase_19 AC 772 ms
76,288 KB
testcase_20 AC 780 ms
76,032 KB
testcase_21 AC 765 ms
76,544 KB
testcase_22 AC 817 ms
76,288 KB
testcase_23 AC 722 ms
76,800 KB
testcase_24 AC 796 ms
76,672 KB
testcase_25 AC 758 ms
76,656 KB
testcase_26 AC 786 ms
75,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r,b=map(int,input().split())
S=input()

def cond(A):
    for i in range(len(A)):
        if i+r<len(A) and A[i]==A[i+r]=="R":
            return False
        if i+b<len(A) and A[i]==A[i+b]=="B":
            return False
    return True

ANS=0
for i in range(1<<20):
    A=[]
    count=0
    for j in range(len(S)):
        if S[j]=="W":
            A.append("W")
        else:
            if (1<<count) & i != 0 :
                A.append(S[j])
            count+=1

    if cond(A)==True:
        ANS=max(ANS,len(A))

print(ANS)
    
    
0