結果

問題 No.38 赤青白ブロック
ユーザー chocoruskchocorusk
提出日時 2020-09-09 12:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 718 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2024-05-08 13:07:18
合計ジャッジ時間 19,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 646 ms
75,904 KB
testcase_01 AC 645 ms
76,360 KB
testcase_02 AC 660 ms
76,032 KB
testcase_03 AC 622 ms
75,904 KB
testcase_04 AC 620 ms
75,776 KB
testcase_05 AC 617 ms
75,776 KB
testcase_06 AC 718 ms
76,416 KB
testcase_07 AC 667 ms
76,160 KB
testcase_08 AC 617 ms
76,160 KB
testcase_09 AC 661 ms
76,288 KB
testcase_10 AC 616 ms
75,776 KB
testcase_11 AC 615 ms
75,776 KB
testcase_12 AC 608 ms
76,032 KB
testcase_13 AC 601 ms
76,028 KB
testcase_14 AC 620 ms
75,724 KB
testcase_15 AC 668 ms
76,896 KB
testcase_16 AC 663 ms
76,460 KB
testcase_17 AC 629 ms
76,544 KB
testcase_18 AC 673 ms
76,296 KB
testcase_19 AC 646 ms
75,956 KB
testcase_20 AC 682 ms
76,312 KB
testcase_21 AC 661 ms
76,160 KB
testcase_22 AC 671 ms
76,160 KB
testcase_23 AC 628 ms
75,760 KB
testcase_24 AC 626 ms
76,300 KB
testcase_25 AC 627 ms
75,904 KB
testcase_26 AC 656 ms
75,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.readline
readlines=sys.stdin.buffer.readlines

kr, kb=map(int, readline().split())
s=readline().rstrip()
ans=0
for i in range(1<<20):
    t=""
    cnt=0
    for j in range(30):
        if s[j]=='R':
            if (i&(1<<cnt))==0:
                t+='R'
            cnt+=1
        elif s[j]=='B':
            if (i&(1<<cnt))==0:
                t+='B'
            cnt+=1
        else:
            t+='W'
    if len(t)<ans:
        continue
    dame=False
    for j, c in enumerate(t):
        if c=='R' and j+kr<len(t) and t[j+kr]=='R':
            dame=True
            break
        elif c=='B' and j+kb<len(t) and t[j+kb]=='B':
            dame=True
            break
    if not dame:
        ans=len(t)
print(ans)
0