結果

問題 No.559 swapAB列
ユーザー shinwisteriashinwisteria
提出日時 2018-03-08 20:25:58
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
54,004 KB
testcase_01 AC 154 ms
53,796 KB
testcase_02 AC 154 ms
53,776 KB
testcase_03 AC 153 ms
54,004 KB
testcase_04 AC 152 ms
53,888 KB
testcase_05 AC 152 ms
53,772 KB
testcase_06 AC 155 ms
54,012 KB
testcase_07 AC 153 ms
54,032 KB
testcase_08 AC 153 ms
54,064 KB
testcase_09 AC 155 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

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