結果

問題 No.559 swapAB列
ユーザー tsunabittsunabit
提出日時 2019-06-17 22:36:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 75,560 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-05-06 18:23:37
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,044 KB
testcase_01 AC 126 ms
53,744 KB
testcase_02 AC 125 ms
54,108 KB
testcase_03 AC 126 ms
54,068 KB
testcase_04 AC 123 ms
54,164 KB
testcase_05 AC 124 ms
54,088 KB
testcase_06 AC 120 ms
53,984 KB
testcase_07 AC 124 ms
53,664 KB
testcase_08 AC 126 ms
54,004 KB
testcase_09 AC 124 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No559 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String s = sc.next();
    	int b = 0, out = 0;
    	for(int i = 0; i < s.length(); i++) {
    		if(s.charAt(i) == 'A') {
    			out += b;
    		}else {
    			b++;
    		}
    	}
    	System.out.println(out);
    }
}
0