結果

問題 No.559 swapAB列
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:28:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-11-22 03:40:40
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,880 KB
testcase_01 AC 120 ms
41,496 KB
testcase_02 AC 108 ms
39,932 KB
testcase_03 AC 119 ms
40,956 KB
testcase_04 AC 117 ms
40,892 KB
testcase_05 AC 120 ms
41,084 KB
testcase_06 AC 106 ms
39,704 KB
testcase_07 AC 109 ms
40,228 KB
testcase_08 AC 120 ms
41,500 KB
testcase_09 AC 121 ms
41,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		// めんどうなので A だけ寄せる
		final char[] ins = sc.next().toCharArray();
		
		int answer =0 ;
		
		int curr_A_index = 0;
		for(int index = 0; index < ins.length; index++){
			if(ins[index] != 'A'){ continue; }
			
			answer += (index - curr_A_index);
			curr_A_index++;
		}
		
		System.out.println(answer);
	}
}
0