結果

問題 No.38 赤青白ブロック
ユーザー nebukuro09nebukuro09
提出日時 2016-10-17 15:30:39
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 79,108 KB
最終ジャッジ日時 2024-05-02 03:10:07
合計ジャッジ時間 22,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 724 ms
78,240 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 824 ms
78,208 KB
testcase_04 AC 772 ms
78,580 KB
testcase_05 AC 742 ms
78,208 KB
testcase_06 WA -
testcase_07 AC 822 ms
78,976 KB
testcase_08 AC 730 ms
78,592 KB
testcase_09 WA -
testcase_10 AC 714 ms
78,208 KB
testcase_11 AC 738 ms
78,720 KB
testcase_12 AC 723 ms
77,952 KB
testcase_13 AC 713 ms
78,080 KB
testcase_14 AC 770 ms
78,080 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 764 ms
78,236 KB
testcase_20 AC 796 ms
78,592 KB
testcase_21 AC 801 ms
78,848 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 762 ms
78,128 KB
testcase_26 AC 781 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Kr, Kb = map(int, raw_input().split())
S = raw_input()
C = S.count('R') + S.count('B')

def solve(b):
    newS = ''
    for i, s in enumerate(S):
        if s != 'W' and (1<<i & b):
            continue
        newS += s
    N = len(newS)
    for i in xrange(N-Kr):
        if newS[i] == 'R' and newS[i+Kr] == 'R':
            return 0
    for i in xrange(N-Kb):
        if newS[i] == 'B' and newS[i+Kb] == 'B':
            return 0
    return N

ans = S.count('W')
for b in xrange(1<<C):
    ans = max(solve(b), ans)
print ans
0