結果

問題 No.346 チワワ数え上げ問題
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 12:29:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 56,604 KB
最終ジャッジ日時 2024-11-24 17:46:09
合計ジャッジ時間 7,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,268 KB
testcase_01 AC 122 ms
53,976 KB
testcase_02 AC 121 ms
54,048 KB
testcase_03 AC 125 ms
54,004 KB
testcase_04 AC 141 ms
54,020 KB
testcase_05 AC 113 ms
54,276 KB
testcase_06 AC 131 ms
54,948 KB
testcase_07 AC 128 ms
53,988 KB
testcase_08 AC 129 ms
54,244 KB
testcase_09 AC 136 ms
54,192 KB
testcase_10 WA -
testcase_11 AC 194 ms
55,672 KB
testcase_12 WA -
testcase_13 AC 192 ms
55,956 KB
testcase_14 AC 131 ms
54,584 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 207 ms
54,588 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 112 ms
54,192 KB
testcase_24 AC 111 ms
53,988 KB
testcase_25 AC 119 ms
54,152 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]", "");
		int 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