結果

問題 No.38 赤青白ブロック
ユーザー titiatitia
提出日時 2022-04-12 03:23:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 919 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-09 14:31:19
合計ジャッジ時間 24,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 815 ms
76,032 KB
testcase_01 AC 919 ms
76,544 KB
testcase_02 AC 764 ms
76,032 KB
testcase_03 AC 881 ms
76,416 KB
testcase_04 AC 779 ms
75,392 KB
testcase_05 AC 756 ms
76,288 KB
testcase_06 AC 791 ms
76,544 KB
testcase_07 AC 788 ms
75,904 KB
testcase_08 AC 726 ms
75,904 KB
testcase_09 AC 809 ms
75,904 KB
testcase_10 AC 696 ms
75,520 KB
testcase_11 AC 734 ms
76,160 KB
testcase_12 AC 781 ms
76,416 KB
testcase_13 AC 742 ms
75,520 KB
testcase_14 AC 836 ms
75,904 KB
testcase_15 AC 814 ms
76,068 KB
testcase_16 AC 797 ms
76,160 KB
testcase_17 AC 790 ms
75,776 KB
testcase_18 AC 786 ms
76,032 KB
testcase_19 AC 805 ms
76,160 KB
testcase_20 AC 800 ms
75,904 KB
testcase_21 AC 780 ms
76,468 KB
testcase_22 AC 850 ms
75,520 KB
testcase_23 AC 762 ms
75,776 KB
testcase_24 AC 796 ms
75,520 KB
testcase_25 AC 794 ms
76,160 KB
testcase_26 AC 833 ms
76,416 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