結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,516 KB
testcase_01 AC 127 ms
41,180 KB
testcase_02 AC 126 ms
41,200 KB
testcase_03 AC 124 ms
41,412 KB
testcase_04 AC 129 ms
41,524 KB
testcase_05 AC 128 ms
41,408 KB
testcase_06 AC 131 ms
41,060 KB
testcase_07 AC 127 ms
41,736 KB
testcase_08 AC 128 ms
41,084 KB
testcase_09 AC 128 ms
40,936 KB
testcase_10 WA -
testcase_11 AC 177 ms
42,104 KB
testcase_12 WA -
testcase_13 AC 160 ms
42,012 KB
testcase_14 AC 125 ms
41,692 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 208 ms
42,088 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
41,152 KB
testcase_24 AC 122 ms
41,148 KB
testcase_25 AC 129 ms
41,200 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 int solve (String s) {
		int wcnt = 0, 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