結果

問題 No.559 swapAB列
ユーザー htensaihtensai
提出日時 2019-11-14 21:20:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 73,624 KB
実行使用メモリ 41,108 KB
最終ジャッジ日時 2024-09-22 01:46:50
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,988 KB
testcase_01 AC 111 ms
40,996 KB
testcase_02 AC 112 ms
40,840 KB
testcase_03 AC 115 ms
41,108 KB
testcase_04 AC 115 ms
41,000 KB
testcase_05 AC 111 ms
40,868 KB
testcase_06 AC 116 ms
41,012 KB
testcase_07 AC 100 ms
39,808 KB
testcase_08 AC 110 ms
39,960 KB
testcase_09 AC 102 ms
39,936 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();
		int bCount = 0;
		int total = 0;
		for (char c : arr) {
		    if (c == 'A') {
		        total += bCount;
		    } else {
		        bCount++;
		    }
		}
		System.out.println(total);
	}
}
0