結果

問題 No.2021 Not A but B
ユーザー ThetaTheta
提出日時 2022-10-07 18:40:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,068 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-12 01:39:09
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 105 ms
11,264 KB
testcase_09 AC 102 ms
11,008 KB
testcase_10 AC 99 ms
11,136 KB
testcase_11 AC 97 ms
11,136 KB
testcase_12 AC 98 ms
11,136 KB
testcase_13 AC 98 ms
11,136 KB
testcase_14 AC 99 ms
11,136 KB
testcase_15 AC 101 ms
11,136 KB
testcase_16 AC 101 ms
11,136 KB
testcase_17 AC 99 ms
11,264 KB
testcase_18 AC 101 ms
11,264 KB
testcase_19 AC 101 ms
11,136 KB
testcase_20 AC 100 ms
11,136 KB
testcase_21 AC 34 ms
10,624 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 33 ms
10,752 KB
testcase_26 AC 31 ms
11,136 KB
testcase_27 AC 121 ms
11,136 KB
testcase_28 AC 121 ms
11,136 KB
testcase_29 AC 161 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    length = int(input())
    strings = input()

    if length == 2:
        print(1)
        return

    BB_found = False
    counter = 0
    current_idx = 0
    while current_idx < length-1:
        a_idx = strings.find("A", current_idx)
        if a_idx == 0:
            counter += 1
            current_idx = 1
            continue

        if a_idx == length - 1:
            if strings[a_idx-1] == "B":
                counter += 1
                break

        if a_idx != -1:
            previous_2letters = strings[a_idx-1:a_idx+1]
            if previous_2letters == "AA":
                counter += 1
            else:
                if strings[a_idx+1] == "A":
                    counter += 2
                else:
                    counter += 1

            diff = a_idx - current_idx
            if diff >= 2:
                BB_found = True
            current_idx = a_idx + 1
        else:
            BB_found = True
            break

    if BB_found:
        counter += 1
    print(counter)


if __name__ == "__main__":
    main()
0