結果

問題 No.346 チワワ数え上げ問題
ユーザー YamaKasaYamaKasa
提出日時 2018-09-17 03:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 42,900 KB
最終ジャッジ日時 2024-07-18 07:34:46
合計ジャッジ時間 6,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,280 KB
testcase_01 AC 112 ms
40,268 KB
testcase_02 AC 105 ms
41,132 KB
testcase_03 AC 106 ms
41,572 KB
testcase_04 AC 108 ms
41,040 KB
testcase_05 AC 99 ms
40,320 KB
testcase_06 AC 99 ms
41,580 KB
testcase_07 AC 122 ms
41,236 KB
testcase_08 AC 119 ms
41,456 KB
testcase_09 AC 108 ms
41,580 KB
testcase_10 AC 175 ms
42,364 KB
testcase_11 AC 170 ms
41,812 KB
testcase_12 AC 161 ms
42,140 KB
testcase_13 AC 160 ms
42,068 KB
testcase_14 AC 123 ms
41,376 KB
testcase_15 AC 171 ms
42,752 KB
testcase_16 AC 176 ms
42,608 KB
testcase_17 AC 183 ms
42,892 KB
testcase_18 AC 162 ms
42,712 KB
testcase_19 AC 160 ms
42,172 KB
testcase_20 AC 174 ms
42,900 KB
testcase_21 AC 179 ms
42,672 KB
testcase_22 AC 179 ms
42,696 KB
testcase_23 AC 99 ms
41,376 KB
testcase_24 AC 97 ms
41,428 KB
testcase_25 AC 103 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int l = S.length();
		int[]k = new int[l];
		int cnt = 0;
		for(int i = 0; i < l; i++) {
			if(S.charAt(i) == 'w'){
				cnt++;
			}
			k[i] = cnt;
		}
		long ans = 0;
		for(int i = 0; i < l; i++) {
			if(S.charAt(i) == 'c') {
				int m = cnt - k[i];
				if(m >= 2) {
					ans += (long)m * (m - 1) / 2;
				}else {
					break;
				}
			}
		}
		System.out.println(ans);
	}
}
0