結果

問題 No.38 赤青白ブロック
ユーザー roiti46roiti46
提出日時 2015-02-11 22:36:17
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-06 01:59:04
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,312 KB
testcase_01 AC 133 ms
78,720 KB
testcase_02 AC 101 ms
78,208 KB
testcase_03 AC 93 ms
78,080 KB
testcase_04 AC 85 ms
75,136 KB
testcase_05 AC 85 ms
75,392 KB
testcase_06 AC 131 ms
78,464 KB
testcase_07 AC 112 ms
78,464 KB
testcase_08 AC 84 ms
75,392 KB
testcase_09 AC 128 ms
78,464 KB
testcase_10 AC 86 ms
75,392 KB
testcase_11 AC 85 ms
75,776 KB
testcase_12 AC 85 ms
75,648 KB
testcase_13 AC 86 ms
75,776 KB
testcase_14 AC 87 ms
75,264 KB
testcase_15 AC 105 ms
78,336 KB
testcase_16 AC 112 ms
78,208 KB
testcase_17 AC 94 ms
77,824 KB
testcase_18 AC 106 ms
78,464 KB
testcase_19 AC 105 ms
78,336 KB
testcase_20 AC 97 ms
77,824 KB
testcase_21 AC 96 ms
78,080 KB
testcase_22 AC 124 ms
78,848 KB
testcase_23 AC 86 ms
75,520 KB
testcase_24 AC 117 ms
78,080 KB
testcase_25 AC 90 ms
77,952 KB
testcase_26 AC 92 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
def judge(s):
    if any(s[i] == s[i-Kr] == "R" for i in range(Kr,len(s))): return False
    if any(s[i] == s[i-Kb] == "B" for i in range(Kb,len(s))): return False
    return True

def rec(s):
    global ans
    if s in used or len(s) <= ans: return
    used.add(s)
    if judge(s):
        ans = len(s)
        return
    for i in range(len(s)):
        if s[i] == "W": continue
        rec(s[:i]+s[i+1:])

Kr,Kb = map(int,raw_input().split())
S = raw_input()
used = set([])
ans = 12
rec(S)
print ans
0