結果

問題 No.2283 Prohibit Three Consecutive
ユーザー 👑 p-adicp-adic
提出日時 2023-06-05 13:15:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,067 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-06-09 05:07:15
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 111 ms
75,652 KB
testcase_04 AC 106 ms
75,648 KB
testcase_05 AC 214 ms
78,512 KB
testcase_06 AC 196 ms
77,240 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 1,067 ms
79,488 KB
testcase_09 AC 68 ms
75,168 KB
testcase_10 AC 67 ms
75,520 KB
testcase_11 AC 67 ms
75,392 KB
testcase_12 AC 178 ms
76,540 KB
testcase_13 AC 256 ms
77,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
O='1'
for n in range(int(I())):
	N,S,f=I(),I(),0
	T=[[S,i][S[0]>O][0]+[S,i][S[1]>O][1]for i in["00","01","10","11"]]
	for t in T:
		a=b=c=d=1
		for s in t+S[2:]+t:a,b,c,d=c*(s!=O),(a+c)*(s>=O),(b+d)*(s!=O),b*(s>=O)
		f+=a+b+c+d
	print(["No","Yes"][f>0])
0