結果

問題 No.559 swapAB列
ユーザー shinwisteriashinwisteria
提出日時 2018-03-08 20:25:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 4,186 ms
コンパイル使用メモリ 75,040 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-10-05 08:14:46
合計ジャッジ時間 6,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con559 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.nextLine();
		s.close();

		int count = 0 , b = 0;
		for(int i = 0;i < str.length();i++){
			if(str.charAt(i) == 'A'){
				count += b;
			}else{
				b++;
			}
		}
		System.out.println(count);

	}

}
0