結果

問題 No.2283 Prohibit Three Consecutive
ユーザー 👑 p-adicp-adic
提出日時 2023-06-05 13:05:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-06-09 05:07:00
合計ジャッジ時間 2,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,532 KB
testcase_03 AC 83 ms
76,032 KB
testcase_04 AC 88 ms
75,772 KB
testcase_05 AC 175 ms
78,360 KB
testcase_06 AC 166 ms
77,816 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 651 ms
79,616 KB
testcase_09 AC 54 ms
75,840 KB
testcase_10 AC 59 ms
75,608 KB
testcase_11 AC 57 ms
75,520 KB
testcase_12 AC 140 ms
77,056 KB
testcase_13 AC 210 ms
78,044 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