結果

問題 No.346 チワワ数え上げ問題
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-28 01:28:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 76,664 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-09-24 11:56:48
合計ジャッジ時間 7,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,028 KB
testcase_01 AC 127 ms
53,864 KB
testcase_02 AC 125 ms
53,916 KB
testcase_03 AC 124 ms
54,104 KB
testcase_04 AC 129 ms
53,920 KB
testcase_05 AC 125 ms
54,212 KB
testcase_06 AC 128 ms
54,116 KB
testcase_07 AC 126 ms
54,156 KB
testcase_08 AC 127 ms
54,052 KB
testcase_09 AC 130 ms
54,184 KB
testcase_10 AC 193 ms
54,120 KB
testcase_11 AC 190 ms
54,360 KB
testcase_12 AC 195 ms
54,424 KB
testcase_13 AC 174 ms
54,312 KB
testcase_14 AC 141 ms
54,116 KB
testcase_15 AC 195 ms
54,312 KB
testcase_16 AC 195 ms
54,384 KB
testcase_17 AC 197 ms
54,380 KB
testcase_18 AC 202 ms
54,088 KB
testcase_19 AC 196 ms
54,116 KB
testcase_20 AC 196 ms
54,328 KB
testcase_21 AC 200 ms
54,224 KB
testcase_22 AC 196 ms
54,348 KB
testcase_23 AC 109 ms
52,732 KB
testcase_24 AC 110 ms
53,024 KB
testcase_25 AC 124 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String S = sc.next();
		
		char[] charS = S.toCharArray();
		
		long c = 0, w = 0;
		
		for(int i = S.length() - 1; i >= 0; i--) {
			if(charS[i] == 'c') {
				c+=w * (w - 1) / 2;
			} else if(charS[i] == 'w') {
				w++;
			}
		}
		
		System.out.println(c);
	}
}
0