結果

問題 No.559 swapAB列
ユーザー Pump0129Pump0129
提出日時 2018-03-26 11:51:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-06-25 06:44:18
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,336 KB
testcase_01 AC 125 ms
41,120 KB
testcase_02 AC 113 ms
41,052 KB
testcase_03 AC 127 ms
40,860 KB
testcase_04 AC 123 ms
41,492 KB
testcase_05 AC 125 ms
41,356 KB
testcase_06 AC 122 ms
41,268 KB
testcase_07 AC 121 ms
41,616 KB
testcase_08 AC 123 ms
41,244 KB
testcase_09 AC 121 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no559;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		
		String line = scan.nextLine();
		
		scan.close();
		
		int acnt = 0;
		int swapcnt = 0;
		
		for (int i = line.length() - 1; 0 <= i; i--) {
			switch (line.charAt(i)) {
			case 'A':
				acnt++;
				break;
			case 'B':
				swapcnt += acnt;
				break;
			}
		}
		
		System.out.println(swapcnt);
	}
}
0