結果

問題 No.38 赤青白ブロック
ユーザー dangodango
提出日時 2023-07-09 16:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,707 ms / 5,000 ms
コード長 1,023 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,096 KB
最終ジャッジ日時 2024-07-23 13:09:19
合計ジャッジ時間 45,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,514 ms
76,732 KB
testcase_01 AC 1,678 ms
76,540 KB
testcase_02 AC 1,594 ms
76,644 KB
testcase_03 AC 1,638 ms
76,840 KB
testcase_04 AC 1,570 ms
77,096 KB
testcase_05 AC 1,562 ms
76,784 KB
testcase_06 AC 1,618 ms
76,572 KB
testcase_07 AC 1,665 ms
76,520 KB
testcase_08 AC 1,460 ms
76,964 KB
testcase_09 AC 1,541 ms
76,904 KB
testcase_10 AC 1,476 ms
76,316 KB
testcase_11 AC 1,495 ms
76,652 KB
testcase_12 AC 1,568 ms
76,768 KB
testcase_13 AC 1,481 ms
76,604 KB
testcase_14 AC 1,605 ms
76,888 KB
testcase_15 AC 1,519 ms
76,664 KB
testcase_16 AC 1,628 ms
76,544 KB
testcase_17 AC 1,590 ms
76,524 KB
testcase_18 AC 1,521 ms
76,776 KB
testcase_19 AC 1,529 ms
76,392 KB
testcase_20 AC 1,634 ms
76,892 KB
testcase_21 AC 1,620 ms
76,780 KB
testcase_22 AC 1,597 ms
76,888 KB
testcase_23 AC 1,595 ms
76,828 KB
testcase_24 AC 1,707 ms
76,516 KB
testcase_25 AC 1,603 ms
77,032 KB
testcase_26 AC 1,535 ms
76,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
mmi, mma = math.inf, max
bls, brs = lambda x, y: x << y, lambda x, y: x >> y
kr, kb = map(int, input().split())
s = input()
red, blue = [], []
t = {}
use = {}
for i in range(1, 31):
    use[i] = True
    t[i] = s[i - 1]
    if t[i] == "R":
        red.append(i)
    elif t[i] == "B":
        blue.append(i)
ret = 10
tot = bls(1, 20)
for i in range(tot):
    ti = i
    for j in range(1, 11):
        tgt = red[j - 1]
        use[tgt] = ti % 2 == 1
        ti = brs(ti, 1)
    for j in range(1, 11):
        tgt = blue[j - 1]
        use[tgt] = ti % 2 == 1
        ti = brs(ti, 1)
    w = []
    for j in range(1, 31):
        if use[j]:
            w.append(t[j])
    valid = True
    for j in range(1, len(w) - kr + 1):
        if w[j - 1] == "R" and w[j + kr - 1] == "R":
            valid = False
            break
    for j in range(1, len(w) - kb + 1):
        if w[j - 1] == "B" and w[j + kb - 1] == "B":
            valid = False
            break
    if valid:
        ret = mma(ret, len(w))
print(ret)
0