結果

問題 No.2021 Not A but B
ユーザー moharan627moharan627
提出日時 2022-07-29 22:21:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 1,132 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 73,432 KB
最終ジャッジ日時 2024-07-19 15:25:27
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,168 KB
testcase_01 AC 40 ms
54,840 KB
testcase_02 AC 37 ms
54,168 KB
testcase_03 AC 35 ms
53,820 KB
testcase_04 AC 39 ms
53,600 KB
testcase_05 AC 40 ms
53,924 KB
testcase_06 AC 38 ms
54,000 KB
testcase_07 AC 41 ms
54,648 KB
testcase_08 AC 59 ms
70,372 KB
testcase_09 AC 63 ms
72,368 KB
testcase_10 AC 62 ms
69,980 KB
testcase_11 AC 56 ms
69,756 KB
testcase_12 AC 56 ms
70,264 KB
testcase_13 AC 60 ms
73,432 KB
testcase_14 AC 59 ms
70,068 KB
testcase_15 AC 56 ms
68,844 KB
testcase_16 AC 55 ms
69,716 KB
testcase_17 AC 57 ms
70,232 KB
testcase_18 AC 59 ms
70,756 KB
testcase_19 AC 60 ms
70,696 KB
testcase_20 AC 58 ms
70,104 KB
testcase_21 AC 51 ms
64,492 KB
testcase_22 AC 53 ms
64,036 KB
testcase_23 AC 51 ms
64,288 KB
testcase_24 AC 45 ms
62,456 KB
testcase_25 AC 50 ms
64,788 KB
testcase_26 AC 55 ms
69,764 KB
testcase_27 AC 53 ms
67,004 KB
testcase_28 AC 54 ms
67,040 KB
testcase_29 AC 49 ms
62,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
#10**20,2**63,float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    S = input()
    Ans = 0
    BB = 0
    for i in range(N-1):
        if((S[i]=="A" and S[i+1]=="A") or (S[i]!=S[i+1])):
            Ans += 1
        elif((S[i]=="B" and S[i+1]=="B")):
            BB=1
    for i in range(N-2):
        if(S[i:i+3]=="BAB"):
            Ans-=1
    print(Ans+BB)
    return
solve()
0