結果

問題 No.346 チワワ数え上げ問題
ユーザー spaciaspacia
提出日時 2016-06-02 16:56:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 2,775 ms
コンパイル使用メモリ 78,440 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-10-08 05:32:48
合計ジャッジ時間 7,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,412 KB
testcase_01 AC 124 ms
41,144 KB
testcase_02 AC 133 ms
41,304 KB
testcase_03 AC 133 ms
41,228 KB
testcase_04 AC 125 ms
41,368 KB
testcase_05 AC 124 ms
41,604 KB
testcase_06 AC 128 ms
41,152 KB
testcase_07 AC 129 ms
41,364 KB
testcase_08 AC 129 ms
41,236 KB
testcase_09 AC 126 ms
41,000 KB
testcase_10 AC 203 ms
42,048 KB
testcase_11 AC 176 ms
41,520 KB
testcase_12 AC 198 ms
41,792 KB
testcase_13 AC 183 ms
41,572 KB
testcase_14 AC 140 ms
41,000 KB
testcase_15 AC 183 ms
41,912 KB
testcase_16 AC 202 ms
41,924 KB
testcase_17 AC 204 ms
42,064 KB
testcase_18 AC 200 ms
42,040 KB
testcase_19 AC 192 ms
42,364 KB
testcase_20 AC 203 ms
42,564 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 123 ms
40,800 KB
testcase_24 AC 127 ms
41,692 KB
testcase_25 AC 124 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);

		System.out.println(solve(sc.next()));

		sc.close();

	}

	public static long solve (String s) {
		int wcnt = 0;
		long sum = 0;
		int len = s.length();
		for (int i = len - 1; i >= 0; i--) {
			if (s.charAt(i) == 'w') {
				wcnt++;
				continue;
			}
			if (s.charAt(i) == 'c')
				sum += wcnt * (wcnt - 1) / 2;
		}
		return sum;
	}

}
0