結果

問題 No.559 swapAB列
ユーザー tetsutetsu
提出日時 2017-08-25 22:29:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-10-15 15:59:00
合計ジャッジ時間 5,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,892 KB
testcase_01 AC 128 ms
53,868 KB
testcase_02 AC 129 ms
53,932 KB
testcase_03 AC 128 ms
53,968 KB
testcase_04 AC 128 ms
53,980 KB
testcase_05 AC 129 ms
54,188 KB
testcase_06 AC 127 ms
54,012 KB
testcase_07 AC 128 ms
53,912 KB
testcase_08 AC 129 ms
53,856 KB
testcase_09 AC 129 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki172;

import java.util.Scanner;

public class B {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		sc.close();
		int bonus = 0;
		int ans = 0;
		for(int i=0; i<S.length(); i++) {
			if(S.charAt(i) == 'A') {
				ans += bonus;
			} else {
				bonus++;
			}
		}
		System.out.println(ans);
	}
}
0