結果

問題 No.38 赤青白ブロック
ユーザー colognecologne
提出日時 2022-01-23 18:13:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 5,000 ms
コード長 893 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,132 KB
最終ジャッジ日時 2024-05-07 07:01:33
合計ジャッジ時間 20,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
75,776 KB
testcase_01 AC 542 ms
75,776 KB
testcase_02 AC 655 ms
75,904 KB
testcase_03 AC 676 ms
75,808 KB
testcase_04 AC 528 ms
75,520 KB
testcase_05 AC 683 ms
75,980 KB
testcase_06 AC 622 ms
75,724 KB
testcase_07 AC 541 ms
75,776 KB
testcase_08 AC 724 ms
75,940 KB
testcase_09 AC 670 ms
75,648 KB
testcase_10 AC 789 ms
75,520 KB
testcase_11 AC 766 ms
75,776 KB
testcase_12 AC 665 ms
75,892 KB
testcase_13 AC 756 ms
75,904 KB
testcase_14 AC 682 ms
76,132 KB
testcase_15 AC 800 ms
75,648 KB
testcase_16 AC 393 ms
75,752 KB
testcase_17 AC 593 ms
75,648 KB
testcase_18 AC 697 ms
75,776 KB
testcase_19 AC 685 ms
75,728 KB
testcase_20 AC 560 ms
75,912 KB
testcase_21 AC 575 ms
75,520 KB
testcase_22 AC 579 ms
75,776 KB
testcase_23 AC 742 ms
75,904 KB
testcase_24 AC 448 ms
75,648 KB
testcase_25 AC 725 ms
75,904 KB
testcase_26 AC 668 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    Kr, Kb = map(int, input().split())
    s = input()
    ans = 10
    for rm in range(1024):
        for bm in range(1024):
            ns = ''
            rc, bc = 0, 0
            for i in s:
                if i == 'R':
                    if (1 << rc) & rm:
                        ns += 'R'
                        if len(ns) > Kr and ns[-Kr-1] == 'R':
                            break
                    rc += 1
                elif i == 'B':
                    if (1 << bc) & bm:
                        ns += 'B'
                        if len(ns) > Kb and ns[-Kb-1] == 'B':
                            break
                    bc += 1
                else:
                    ns += 'W'
            else:
                ans = max(ans, len(ns))

    print(ans)


if __name__ == '__main__':
    main()
0