結果

問題 No.559 swapAB列
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:28:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 78,176 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-05-01 21:08:47
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,152 KB
testcase_01 AC 133 ms
40,832 KB
testcase_02 AC 136 ms
41,364 KB
testcase_03 AC 134 ms
41,536 KB
testcase_04 AC 134 ms
41,164 KB
testcase_05 AC 135 ms
40,848 KB
testcase_06 AC 133 ms
41,152 KB
testcase_07 AC 132 ms
41,112 KB
testcase_08 AC 131 ms
41,476 KB
testcase_09 AC 133 ms
40,924 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