結果

問題 No.38 赤青白ブロック
ユーザー nebukuro09nebukuro09
提出日時 2016-10-17 15:54:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 876 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 79,008 KB
最終ジャッジ日時 2024-06-06 02:20:44
合計ジャッジ時間 24,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 822 ms
78,216 KB
testcase_01 AC 843 ms
78,904 KB
testcase_02 AC 796 ms
78,496 KB
testcase_03 AC 811 ms
78,232 KB
testcase_04 AC 798 ms
78,108 KB
testcase_05 AC 767 ms
78,488 KB
testcase_06 AC 868 ms
78,248 KB
testcase_07 AC 860 ms
78,224 KB
testcase_08 AC 730 ms
78,204 KB
testcase_09 AC 841 ms
78,616 KB
testcase_10 AC 748 ms
78,508 KB
testcase_11 AC 761 ms
78,348 KB
testcase_12 AC 764 ms
78,252 KB
testcase_13 AC 779 ms
78,268 KB
testcase_14 AC 793 ms
78,236 KB
testcase_15 AC 832 ms
78,632 KB
testcase_16 AC 783 ms
79,008 KB
testcase_17 AC 810 ms
78,372 KB
testcase_18 AC 839 ms
78,508 KB
testcase_19 AC 828 ms
78,344 KB
testcase_20 AC 806 ms
78,352 KB
testcase_21 AC 876 ms
78,396 KB
testcase_22 AC 791 ms
78,480 KB
testcase_23 AC 778 ms
78,224 KB
testcase_24 AC 827 ms
78,112 KB
testcase_25 AC 805 ms
78,616 KB
testcase_26 AC 831 ms
77,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(b):
    newS = ''
    c = -1
    for i, s in enumerate(S):
        if s != 'W':
            c += 1
            if ((1<<c) & 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