結果

問題 No.38 赤青白ブロック
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-24 14:23:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,016 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-06-10 21:14:01
合計ジャッジ時間 26,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
76,012 KB
testcase_01 AC 879 ms
75,712 KB
testcase_02 AC 896 ms
76,000 KB
testcase_03 AC 937 ms
76,328 KB
testcase_04 AC 892 ms
75,756 KB
testcase_05 AC 1,016 ms
76,520 KB
testcase_06 AC 800 ms
75,756 KB
testcase_07 AC 812 ms
75,860 KB
testcase_08 AC 977 ms
76,652 KB
testcase_09 AC 859 ms
75,796 KB
testcase_10 AC 953 ms
76,084 KB
testcase_11 AC 997 ms
76,332 KB
testcase_12 AC 886 ms
76,352 KB
testcase_13 AC 993 ms
76,076 KB
testcase_14 AC 924 ms
76,184 KB
testcase_15 AC 971 ms
75,940 KB
testcase_16 AC 733 ms
75,712 KB
testcase_17 AC 885 ms
75,820 KB
testcase_18 AC 1,013 ms
76,388 KB
testcase_19 AC 918 ms
75,936 KB
testcase_20 AC 913 ms
76,484 KB
testcase_21 AC 845 ms
75,964 KB
testcase_22 AC 909 ms
75,736 KB
testcase_23 AC 983 ms
76,908 KB
testcase_24 AC 794 ms
76,044 KB
testcase_25 AC 946 ms
76,300 KB
testcase_26 AC 928 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r, b = map(int, input().split())
S = input()

ans = 10

for bit in range(1 << 20):
    i = 0
    use = []
    for s in S:
        if s == "W":
            use.append(s)
            continue
        if (bit >> i) & 1:
            use.append(s)
        i += 1

    ok = True
    for i, s in enumerate(use):
        if s == "R" and i + r < len(use) and use[i + r] == "R":
            ok = False
            break
        elif s == "B" and i + b < len(use) and use[i + b] == "B":
            ok = False
            break
    if ok and len(use) > ans:
        ans = len(use)

print(ans)
0