結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,516 KB
testcase_01 AC 114 ms
40,968 KB
testcase_02 AC 116 ms
41,328 KB
testcase_03 AC 114 ms
41,280 KB
testcase_04 AC 102 ms
40,160 KB
testcase_05 AC 108 ms
41,360 KB
testcase_06 AC 113 ms
41,272 KB
testcase_07 AC 108 ms
39,876 KB
testcase_08 AC 106 ms
40,060 KB
testcase_09 AC 126 ms
41,264 KB
testcase_10 WA -
testcase_11 AC 168 ms
41,672 KB
testcase_12 WA -
testcase_13 AC 173 ms
41,776 KB
testcase_14 AC 132 ms
41,168 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 177 ms
42,336 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 95 ms
39,892 KB
testcase_24 AC 111 ms
41,264 KB
testcase_25 AC 108 ms
41,264 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