結果

問題 No.38 赤青白ブロック
ユーザー ayaoniayaoni
提出日時 2020-12-17 02:22:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,175 ms / 5,000 ms
コード長 1,195 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-09-20 06:03:54
合計ジャッジ時間 29,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,015 ms
76,136 KB
testcase_01 AC 1,004 ms
76,124 KB
testcase_02 AC 960 ms
76,396 KB
testcase_03 AC 1,011 ms
76,052 KB
testcase_04 AC 950 ms
76,128 KB
testcase_05 AC 1,036 ms
75,876 KB
testcase_06 AC 961 ms
76,464 KB
testcase_07 AC 959 ms
76,648 KB
testcase_08 AC 1,013 ms
75,824 KB
testcase_09 AC 973 ms
76,300 KB
testcase_10 AC 1,000 ms
76,032 KB
testcase_11 AC 1,175 ms
75,956 KB
testcase_12 AC 943 ms
75,740 KB
testcase_13 AC 1,063 ms
75,928 KB
testcase_14 AC 1,006 ms
76,276 KB
testcase_15 AC 1,086 ms
76,080 KB
testcase_16 AC 919 ms
76,560 KB
testcase_17 AC 954 ms
76,644 KB
testcase_18 AC 1,040 ms
76,148 KB
testcase_19 AC 1,060 ms
76,548 KB
testcase_20 AC 1,013 ms
76,544 KB
testcase_21 AC 904 ms
76,292 KB
testcase_22 AC 1,023 ms
76,060 KB
testcase_23 AC 989 ms
75,964 KB
testcase_24 AC 969 ms
76,204 KB
testcase_25 AC 991 ms
76,116 KB
testcase_26 AC 964 ms
76,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


r,b = MI()
S = S()

X = []
for i in range(30):
    if S[i] != 'W':
        X.append(i)

ans = 10
for i in range(1<<20):
    delete = []
    for j in range(20):
        if (i>>j) & 1:
            delete.append(X[j])
    delete.append(100)
    A = ''
    index = 0
    for j in range(30):
        if j != delete[index]:
            A += S[j]
        else:
            index += 1
    l = len(A)
    for j in range(l):
        if A[j] == 'W':
            continue
        elif A[j] == 'R':
            if (0 <= j-r and A[j-r] == 'R') or (j+r < l and A[j+r] == 'R'):
                break
        else:
            if (0 <= j-b and A[j-b] == 'B') or (j+b < l and A[j+b] == 'B'):
                break
    else:
        ans = max(ans,l)

print(ans)
0