結果

問題 No.38 赤青白ブロック
ユーザー kohei2019kohei2019
提出日時 2021-02-18 15:12:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 942 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 77,096 KB
最終ジャッジ日時 2024-09-14 21:32:51
合計ジャッジ時間 27,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
76,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 977 ms
76,516 KB
testcase_04 AC 895 ms
76,288 KB
testcase_05 AC 1,010 ms
76,032 KB
testcase_06 WA -
testcase_07 AC 858 ms
76,928 KB
testcase_08 AC 970 ms
76,288 KB
testcase_09 WA -
testcase_10 AC 945 ms
76,288 KB
testcase_11 AC 1,147 ms
76,544 KB
testcase_12 AC 864 ms
76,356 KB
testcase_13 AC 964 ms
76,116 KB
testcase_14 AC 840 ms
76,416 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 898 ms
76,544 KB
testcase_20 AC 913 ms
76,604 KB
testcase_21 AC 827 ms
76,620 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 890 ms
76,304 KB
testcase_26 AC 859 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
Kr,Kb = map(int,input().split())
S = list(input())

lsBR = []
for i in range(len(S)):
    if S[i] == 'B' or S[i] == 'R':
        lsBR.append(i)
ans = 0
for i in range(2**len(lsBR)):
    S1 = copy.copy(S)
    for j in range(len(lsBR)):
        if (i>>j) & 1:
            S1[j] = ''
    S2 = ''.join(S1)
    f = True
    for j in range(len(S2)):
        if S2[j] == 'R':
            if j-Kr >= 0:
                if S2[j-Kr] == 'R':
                    f = False
                    break
            if j+Kr < len(S2):
                if S2[j+Kr] == 'R':
                    f = False
                    break
        elif S2[j] == 'B':
            if j-Kb >= 0:
                if S2[j-Kb] == 'B':
                    f = False
                    break
            if j+Kb < len(S2):
                if S2[j+Kb] == 'B':
                    f = False
                    break
    if f:
        ans = max(len(S2),ans)
print(ans)
0