結果

問題 No.559 swapAB列
ユーザー YamaKasaYamaKasa
提出日時 2018-06-05 03:23:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-06-30 09:52:39
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,300 KB
testcase_01 AC 129 ms
54,068 KB
testcase_02 AC 123 ms
54,008 KB
testcase_03 AC 134 ms
53,596 KB
testcase_04 AC 122 ms
54,088 KB
testcase_05 AC 121 ms
53,960 KB
testcase_06 AC 121 ms
54,000 KB
testcase_07 AC 120 ms
54,132 KB
testcase_08 AC 122 ms
54,092 KB
testcase_09 AC 124 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int l = S.length();
		int cnt1 = 0;
		//int cnt2 = 0;
		for(int i = 0; i < l; i++) {
			char c = S.charAt(i);
			if(c == 'A') {
				cnt1 ++;
			}
		}
		//cnt2 = l - cnt1;
		if(l == 1) {
			System.out.println(0);
			System.exit(0);
		}
		int k = l - 1;
		int sum = 0;
		for(int i = cnt1 - 1; i >= 0; i--) {
			char c = S.charAt(i);
			if(c == 'B') {
				for(int j = k; j >= cnt1 - 1; j --) {
					char c2 = S.charAt(j);
					if(c2 == 'A') {
						k = j - 1;
						sum += j - i;
						break;
					}
				}
			}
		}
		System.out.println(sum);

	}
}
0