結果

問題 No.559 swapAB列
ユーザー tentententen
提出日時 2020-09-07 23:14:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,020 KB
最終ジャッジ日時 2024-05-07 00:19:47
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,160 KB
testcase_01 AC 111 ms
40,728 KB
testcase_02 AC 110 ms
40,768 KB
testcase_03 AC 102 ms
39,988 KB
testcase_04 AC 112 ms
40,584 KB
testcase_05 AC 107 ms
40,048 KB
testcase_06 AC 108 ms
40,968 KB
testcase_07 AC 116 ms
40,876 KB
testcase_08 AC 104 ms
40,092 KB
testcase_09 AC 114 ms
41,020 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