結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,376 KB
testcase_01 AC 36 ms
52,920 KB
testcase_02 AC 35 ms
52,924 KB
testcase_03 AC 68 ms
76,040 KB
testcase_04 AC 76 ms
75,864 KB
testcase_05 AC 174 ms
77,904 KB
testcase_06 AC 139 ms
78,468 KB
testcase_07 AC 32 ms
53,340 KB
testcase_08 AC 649 ms
79,660 KB
testcase_09 AC 45 ms
74,092 KB
testcase_10 AC 52 ms
75,912 KB
testcase_11 AC 53 ms
75,492 KB
testcase_12 AC 148 ms
77,376 KB
testcase_13 AC 217 ms
79,428 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