結果

問題 No.38 赤青白ブロック
ユーザー ytftytft
提出日時 2022-11-04 22:50:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-07-18 20:46:44
合計ジャッジ時間 17,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
76,672 KB
testcase_01 AC 729 ms
75,776 KB
testcase_02 AC 712 ms
76,160 KB
testcase_03 AC 597 ms
75,904 KB
testcase_04 AC 569 ms
75,904 KB
testcase_05 AC 481 ms
76,672 KB
testcase_06 AC 695 ms
75,904 KB
testcase_07 AC 689 ms
75,648 KB
testcase_08 AC 477 ms
76,672 KB
testcase_09 AC 629 ms
76,032 KB
testcase_10 AC 451 ms
76,416 KB
testcase_11 AC 466 ms
76,416 KB
testcase_12 AC 551 ms
76,544 KB
testcase_13 AC 459 ms
76,672 KB
testcase_14 AC 543 ms
76,032 KB
testcase_15 AC 504 ms
76,544 KB
testcase_16 AC 673 ms
75,776 KB
testcase_17 AC 546 ms
75,904 KB
testcase_18 AC 513 ms
76,160 KB
testcase_19 AC 513 ms
75,904 KB
testcase_20 AC 592 ms
76,160 KB
testcase_21 AC 602 ms
76,160 KB
testcase_22 AC 624 ms
76,288 KB
testcase_23 AC 464 ms
76,704 KB
testcase_24 AC 757 ms
76,032 KB
testcase_25 AC 532 ms
76,416 KB
testcase_26 AC 539 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
K=list(map(int,input().split()))
S=[['R','B','W'].index(i) for i in input()]
ans=0
for i in range(2**20):
	temp=i
	cur=[]
	for j in S:
		if j==2 or temp%2:
			cur.append(j)
		if j<2:
			temp//=2
	flg=1
	for j in range(2):
		for k in range(len(cur)-K[j]):
			if cur[k]==cur[k+K[j]]==j:
				flg=0
	ans=max(ans,len(cur)*flg)
print(ans)
0