結果

問題 No.346 チワワ数え上げ問題
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-29 09:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,732 KB
最終ジャッジ日時 2024-10-07 17:38:01
合計ジャッジ時間 8,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,864 KB
testcase_01 AC 119 ms
54,032 KB
testcase_02 AC 107 ms
53,044 KB
testcase_03 AC 111 ms
52,684 KB
testcase_04 AC 121 ms
53,984 KB
testcase_05 AC 119 ms
54,096 KB
testcase_06 AC 119 ms
53,756 KB
testcase_07 AC 117 ms
53,848 KB
testcase_08 AC 106 ms
52,968 KB
testcase_09 AC 123 ms
54,120 KB
testcase_10 AC 190 ms
54,424 KB
testcase_11 AC 176 ms
54,372 KB
testcase_12 AC 182 ms
54,404 KB
testcase_13 AC 171 ms
54,152 KB
testcase_14 AC 136 ms
53,836 KB
testcase_15 AC 193 ms
54,228 KB
testcase_16 AC 190 ms
54,472 KB
testcase_17 AC 191 ms
54,732 KB
testcase_18 AC 196 ms
54,260 KB
testcase_19 AC 193 ms
54,288 KB
testcase_20 AC 192 ms
54,276 KB
testcase_21 AC 203 ms
54,448 KB
testcase_22 AC 198 ms
54,036 KB
testcase_23 AC 123 ms
54,064 KB
testcase_24 AC 116 ms
54,092 KB
testcase_25 AC 116 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise30{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();
    char[] charArray = str.toCharArray();

    long count = 0;
    long w = 0;

    for (long a = charArray.length - 1; a >= 0; a--){
      if (charArray[(int) a] == 'w'){
        w++;
      }

      if (charArray[(int) a] == 'c'){
        count += w * (w - 1) / 2;
      }
    }

    System.out.println(count);
  }
}
0