結果

問題 No.2283 Prohibit Three Consecutive
ユーザー gr1msl3ygr1msl3y
提出日時 2023-04-30 16:25:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 79,052 KB
最終ジャッジ日時 2024-11-19 07:04:48
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 41 ms
60,032 KB
testcase_02 AC 40 ms
59,776 KB
testcase_03 AC 318 ms
76,952 KB
testcase_04 AC 307 ms
77,056 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 179 ms
76,160 KB
testcase_09 AC 173 ms
76,800 KB
testcase_10 AC 178 ms
76,416 KB
testcase_11 AC 183 ms
76,160 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(S):
	S+=S
	dp=[0]*4
	for i in range(4):
		if S[0] in {'?',str(i//2)}:
			if S[1] in {'?',str(i%2)}:
				dp[i]=1
	for s in S[2:]:
		ndp=[0]*4
		for i in range(4):
			for j in range(2):
				if s not in {'?',str(j)}: continue
				k=(i<<1)|j
				if k not in {0,7}:
					ndp[k&3]|=dp[i]
		dp=ndp
	return 'Yes' if sum(dp) else 'No'

T=int(input())
ans=[]
for _ in range(T):
	_=int(input())
	S=input()
	ans.append(solve(S))

print(*ans,sep='\n')
0