結果

問題 No.2021 Not A but B
ユーザー prussian_coderprussian_coder
提出日時 2022-07-29 21:35:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-07-19 13:28:51
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
ans=0
f=0
for i in range(N-1):
	if S[i]=="B" and S[i+1]=="B":
		f=1
	else:
		ans+=1
for i in range(N-2):
	if S[i:i+3]=="BAB":
		ans-=1
print(ans+f)
0