結果

問題 No.2283 Prohibit Three Consecutive
ユーザー 👑 p-adicp-adic
提出日時 2023-06-05 11:41:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-29 05:57:20
合計ジャッジ時間 3,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 114 ms
10,880 KB
testcase_04 AC 115 ms
11,008 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 307 ms
11,008 KB
testcase_09 AC 76 ms
10,880 KB
testcase_10 AC 71 ms
11,008 KB
testcase_11 AC 76 ms
10,880 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
T=int(I())
for t in R(T):
	N,S=I(),I()
	S+=S[0:2]
	a=b=c=d=1
	for s in S:
		if s>'1':a,b,c,d=c,a+c,b+d,b
		elif s<'1':a,b,c,d=c,0,b+d,0
		else:a,b,c,d=0,a+c,0,b
	print(["No","Yes"][a+b+c+d>0])
0