結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,328 KB
testcase_01 AC 131 ms
41,076 KB
testcase_02 AC 131 ms
41,280 KB
testcase_03 AC 136 ms
41,056 KB
testcase_04 AC 135 ms
41,468 KB
testcase_05 AC 131 ms
41,068 KB
testcase_06 AC 133 ms
41,428 KB
testcase_07 AC 134 ms
41,300 KB
testcase_08 AC 131 ms
41,060 KB
testcase_09 AC 135 ms
41,428 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