結果

問題 No.2021 Not A but B
ユーザー k_o_pasturek_o_pasture
提出日時 2022-07-29 22:56:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 87,420 KB
最終ジャッジ日時 2024-07-19 16:11:53
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,640 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
53,384 KB
testcase_05 AC 37 ms
52,192 KB
testcase_06 AC 38 ms
52,524 KB
testcase_07 AC 37 ms
52,532 KB
testcase_08 AC 75 ms
85,836 KB
testcase_09 WA -
testcase_10 AC 71 ms
85,036 KB
testcase_11 AC 69 ms
84,908 KB
testcase_12 AC 70 ms
83,616 KB
testcase_13 WA -
testcase_14 AC 70 ms
86,240 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 68 ms
82,924 KB
testcase_18 AC 70 ms
84,932 KB
testcase_19 AC 72 ms
85,344 KB
testcase_20 AC 73 ms
85,664 KB
testcase_21 AC 50 ms
64,068 KB
testcase_22 AC 52 ms
64,800 KB
testcase_23 AC 50 ms
63,148 KB
testcase_24 AC 43 ms
59,032 KB
testcase_25 AC 49 ms
63,380 KB
testcase_26 AC 48 ms
69,212 KB
testcase_27 AC 69 ms
87,420 KB
testcase_28 AC 69 ms
86,720 KB
testcase_29 AC 63 ms
84,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
if N == 2:
	print(1)
	exit()

T = []
for i in range(N-1):
	if (S[i] == 'B') & (S[i+1] == 'B'):
		pass
	else:
		T.append(S[i])
if (S[-1] == 'B') & (S[-2] == 'B'):
	T.append('B')
elif S[-1] == 'A':
	T.append('A')
# print(''.join(T))
M = len(T)
X = 0
for i in range(M-2):
	if (T[i] == 'B') & (T[i+2]=='B'):
		X += 1
ans = M - X
if N == M:
 	ans -= 1
print(ans)
0