結果

問題 No.559 swapAB列
ユーザー tentententen
提出日時 2020-09-07 23:14:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 44,608 KB
最終ジャッジ日時 2024-11-29 11:31:29
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
44,200 KB
testcase_01 AC 115 ms
44,400 KB
testcase_02 AC 98 ms
43,512 KB
testcase_03 AC 108 ms
44,512 KB
testcase_04 AC 118 ms
44,096 KB
testcase_05 AC 112 ms
44,516 KB
testcase_06 AC 100 ms
43,324 KB
testcase_07 AC 110 ms
43,388 KB
testcase_08 AC 120 ms
44,608 KB
testcase_09 AC 121 ms
44,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	char[] arr = sc.next().toCharArray();
        long total = 0;
        int bCount = 0;
        for (char c : arr) {
            if (c == 'A') {
                total += bCount;
            } else {
                bCount++;
            }
        }
    	System.out.println(total);
	}
}
0