結果

問題 No.2283 Prohibit Three Consecutive
ユーザー 👑 p-adicp-adic
提出日時 2023-06-05 13:05:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 80,004 KB
最終ジャッジ日時 2024-12-29 06:02:41
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,244 KB
testcase_01 AC 39 ms
53,012 KB
testcase_02 AC 41 ms
53,444 KB
testcase_03 AC 98 ms
75,796 KB
testcase_04 AC 99 ms
75,840 KB
testcase_05 AC 206 ms
78,256 KB
testcase_06 AC 197 ms
77,172 KB
testcase_07 AC 38 ms
53,440 KB
testcase_08 AC 750 ms
80,004 KB
testcase_09 AC 67 ms
75,720 KB
testcase_10 AC 66 ms
75,632 KB
testcase_11 AC 65 ms
75,512 KB
testcase_12 AC 166 ms
76,996 KB
testcase_13 AC 255 ms
77,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
O='1'
for n in range(int(I())):
	N,S,f=I(),I(),0
	T=[[S,i][S[0]>O][:1]+[S,i][S[1]>O][1:2]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