結果

問題 No.346 チワワ数え上げ問題
ユーザー ldsyb
提出日時 2016-03-03 21:46:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 56,648 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 13:56:20
合計ジャッジ時間 1,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 14 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
//4STEP 数学1+AのP.100参照

int main(){
   string s;
   cin >> s;
   int ans = 0,count = 0;
   for(int i = s.size() - 1;i != 0;i--){
      if(s[i] == 'w') count++;
      if(s[i] == 'c') ans += count * (count - 1) / 2;
   }
   cout << ans << endl;
}
0