結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,428 KB
testcase_01 AC 113 ms
41,332 KB
testcase_02 AC 100 ms
40,160 KB
testcase_03 AC 110 ms
41,148 KB
testcase_04 AC 100 ms
39,916 KB
testcase_05 AC 108 ms
41,216 KB
testcase_06 AC 103 ms
40,036 KB
testcase_07 AC 112 ms
41,244 KB
testcase_08 AC 112 ms
41,296 KB
testcase_09 AC 109 ms
40,972 KB
testcase_10 WA -
testcase_11 AC 166 ms
41,716 KB
testcase_12 WA -
testcase_13 AC 162 ms
41,928 KB
testcase_14 AC 130 ms
41,620 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 182 ms
42,336 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
41,284 KB
testcase_24 AC 117 ms
41,180 KB
testcase_25 AC 99 ms
40,160 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();

    int count = 0;
    int w = 0;

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

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

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