結果

問題 No.346 チワワ数え上げ問題
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 12:33:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 56,276 KB
最終ジャッジ日時 2024-11-24 17:46:17
合計ジャッジ時間 6,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,936 KB
testcase_01 AC 129 ms
53,884 KB
testcase_02 AC 103 ms
53,032 KB
testcase_03 AC 117 ms
53,880 KB
testcase_04 AC 129 ms
53,888 KB
testcase_05 AC 114 ms
54,004 KB
testcase_06 AC 129 ms
54,332 KB
testcase_07 AC 128 ms
54,144 KB
testcase_08 AC 121 ms
54,420 KB
testcase_09 AC 131 ms
53,968 KB
testcase_10 AC 218 ms
56,276 KB
testcase_11 AC 202 ms
55,920 KB
testcase_12 AC 231 ms
56,168 KB
testcase_13 AC 193 ms
55,428 KB
testcase_14 AC 141 ms
55,028 KB
testcase_15 AC 214 ms
56,060 KB
testcase_16 AC 226 ms
55,504 KB
testcase_17 AC 229 ms
55,436 KB
testcase_18 AC 232 ms
55,988 KB
testcase_19 AC 219 ms
55,336 KB
testcase_20 AC 193 ms
54,652 KB
testcase_21 AC 182 ms
54,616 KB
testcase_22 AC 189 ms
54,324 KB
testcase_23 AC 110 ms
54,100 KB
testcase_24 AC 99 ms
52,972 KB
testcase_25 AC 111 ms
55,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		String in = s.next().replaceAll("[^cw]", "");
		long w=0, r=0;
		for(int i=in.length()-1; i>=0; --i) {
			if(in.charAt(i)=='w') {
				w++;
			}else {
				r+=w*(w-1)/2;
			}
		}
		System.out.println(r);
	}
}
0