結果

問題 No.38 赤青白ブロック
ユーザー 👑 rin204rin204
提出日時 2022-07-14 13:21:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 844 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-25 20:32:04
合計ジャッジ時間 22,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 770 ms
76,196 KB
testcase_01 AC 774 ms
76,404 KB
testcase_02 AC 771 ms
76,032 KB
testcase_03 AC 780 ms
76,672 KB
testcase_04 AC 755 ms
76,032 KB
testcase_05 AC 786 ms
76,160 KB
testcase_06 AC 757 ms
76,032 KB
testcase_07 AC 779 ms
76,136 KB
testcase_08 AC 740 ms
76,288 KB
testcase_09 AC 764 ms
76,308 KB
testcase_10 AC 754 ms
76,160 KB
testcase_11 AC 748 ms
75,876 KB
testcase_12 AC 738 ms
75,648 KB
testcase_13 AC 770 ms
76,032 KB
testcase_14 AC 755 ms
76,032 KB
testcase_15 AC 776 ms
76,288 KB
testcase_16 AC 759 ms
75,904 KB
testcase_17 AC 753 ms
76,544 KB
testcase_18 AC 806 ms
76,672 KB
testcase_19 AC 769 ms
76,000 KB
testcase_20 AC 763 ms
76,408 KB
testcase_21 AC 745 ms
75,904 KB
testcase_22 AC 844 ms
76,024 KB
testcase_23 AC 753 ms
76,032 KB
testcase_24 AC 777 ms
75,916 KB
testcase_25 AC 779 ms
76,032 KB
testcase_26 AC 778 ms
76,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
for bit in range(1 << 20):
    p = 0
    T = []
    m = 30
    for s in S:
        if s == "W":
            T.append(s)
        else:
            if bit >> p & 1:
                T.append(s)
            else:
                m -= 1
            p += 1
    if m < ans:
        continue
    ok = True
    for i, t in enumerate(T):
        if t == "R":
            if i + r < m and T[i + r] == "R":
                ok = False
                break
        elif t == "B":
            if i + b < m and T[i + b] == "B":
                ok = False
                break
    if ok:
        ans = m
print(ans)
0