結果

問題 No.2021 Not A but B
ユーザー 👑 NachiaNachia
提出日時 2022-07-29 21:36:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-19 13:40:08
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 32 ms
10,368 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 65 ms
12,996 KB
testcase_09 AC 67 ms
12,996 KB
testcase_10 AC 65 ms
12,868 KB
testcase_11 AC 63 ms
12,672 KB
testcase_12 AC 63 ms
12,672 KB
testcase_13 AC 64 ms
12,864 KB
testcase_14 AC 65 ms
12,868 KB
testcase_15 AC 68 ms
13,044 KB
testcase_16 AC 66 ms
13,168 KB
testcase_17 AC 62 ms
12,672 KB
testcase_18 AC 68 ms
12,992 KB
testcase_19 AC 67 ms
12,864 KB
testcase_20 AC 66 ms
12,868 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 29 ms
10,496 KB
testcase_25 AC 31 ms
10,496 KB
testcase_26 AC 72 ms
12,480 KB
testcase_27 AC 64 ms
14,592 KB
testcase_28 AC 63 ms
14,208 KB
testcase_29 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
Sraw = input()
S = Sraw.split('B')
res = 0
for s in S :
  if len(s) == 0 : res += 0
  elif len(s) == 1 : res += 1
  else : res += len(s) + 1
if len(S[0]) >= 2 : res -= 1
if len(S[-1]) >= 2 : res -= 1
if Sraw.find("BB") != -1 : res += 1
print(res)
0