結果

問題 No.38 赤青白ブロック
ユーザー rlangevinrlangevin
提出日時 2023-09-25 12:22:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 766 ms / 5,000 ms
コード長 1,060 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-07-18 09:52:03
合計ジャッジ時間 20,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 714 ms
75,904 KB
testcase_01 AC 715 ms
76,488 KB
testcase_02 AC 636 ms
76,188 KB
testcase_03 AC 726 ms
76,232 KB
testcase_04 AC 662 ms
76,476 KB
testcase_05 AC 689 ms
76,504 KB
testcase_06 AC 674 ms
76,484 KB
testcase_07 AC 699 ms
76,884 KB
testcase_08 AC 699 ms
76,412 KB
testcase_09 AC 666 ms
76,020 KB
testcase_10 AC 722 ms
76,224 KB
testcase_11 AC 695 ms
76,468 KB
testcase_12 AC 676 ms
76,368 KB
testcase_13 AC 718 ms
76,324 KB
testcase_14 AC 724 ms
76,396 KB
testcase_15 AC 664 ms
76,100 KB
testcase_16 AC 673 ms
75,980 KB
testcase_17 AC 652 ms
76,380 KB
testcase_18 AC 736 ms
76,484 KB
testcase_19 AC 685 ms
76,488 KB
testcase_20 AC 746 ms
76,356 KB
testcase_21 AC 642 ms
76,360 KB
testcase_22 AC 694 ms
75,864 KB
testcase_23 AC 766 ms
76,624 KB
testcase_24 AC 623 ms
76,220 KB
testcase_25 AC 684 ms
76,224 KB
testcase_26 AC 702 ms
75,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Kr, Kb = map(int, input().split())
S = list(input())
M = 1 << 10
ans = 0

def check(A):
    for i in range(len(A)):
        if A[i] == 0:
            if i - Kr >= 0:
                if A[i - Kr] == 0:
                    return False
            if i + Kr <= len(A) - 1:
                if A[i + Kr] == 0:
                    return False
        if A[i] == 1:
            if i - Kb >= 0:
                if A[i - Kb] == 1:
                    return False
            if i + Kb <= len(A) - 1:
                if A[i + Kb] == 1:
                    return False
    return True


for sr in range(M):
    for sb in range(M):
        ir, ib = 0, 0
        temp = []
        for i in range(30):
            if S[i] == "R":
                if (sr >> ir) & 1:
                    temp.append(0)
                ir += 1
            elif S[i] == "B":
                if (sb >> ib) & 1:
                    temp.append(1)
                ib += 1
            else:
                temp.append(2)
        if check(temp):
            ans = max(ans, len(temp))

print(ans)
0