結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,956 KB
testcase_01 AC 118 ms
54,068 KB
testcase_02 AC 120 ms
54,104 KB
testcase_03 AC 104 ms
52,716 KB
testcase_04 AC 117 ms
54,236 KB
testcase_05 AC 123 ms
54,096 KB
testcase_06 AC 114 ms
54,008 KB
testcase_07 AC 123 ms
54,172 KB
testcase_08 AC 106 ms
52,844 KB
testcase_09 AC 117 ms
54,124 KB
testcase_10 AC 190 ms
54,308 KB
testcase_11 AC 178 ms
54,372 KB
testcase_12 AC 186 ms
54,072 KB
testcase_13 AC 164 ms
54,484 KB
testcase_14 AC 146 ms
53,896 KB
testcase_15 AC 192 ms
54,396 KB
testcase_16 AC 200 ms
54,544 KB
testcase_17 AC 197 ms
54,316 KB
testcase_18 AC 193 ms
54,292 KB
testcase_19 AC 193 ms
54,340 KB
testcase_20 AC 199 ms
54,324 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 118 ms
54,256 KB
testcase_24 AC 103 ms
52,968 KB
testcase_25 AC 117 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;
    int 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