結果

問題 No.559 swapAB列
ユーザー dangodango
提出日時 2023-06-06 20:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 53,252 KB
最終ジャッジ日時 2024-06-09 06:19:25
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,168 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 39 ms
52,260 KB
testcase_03 AC 39 ms
53,252 KB
testcase_04 AC 39 ms
52,708 KB
testcase_05 AC 39 ms
52,092 KB
testcase_06 AC 38 ms
52,068 KB
testcase_07 AC 38 ms
52,968 KB
testcase_08 AC 39 ms
51,872 KB
testcase_09 AC 38 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
count = 0
num_B = 0
for c in S:
    if c == 'B':
        num_B += 1
    else:
        count += num_B
print(count)
0