結果

問題 No.346 チワワ数え上げ問題
ユーザー chocobo
提出日時 2018-05-12 18:00:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 97,592 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 09:39:10
合計ジャッジ時間 1,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <typeinfo>
#include <numeric>
#include <functional>
#include <unordered_map>
#include <bitset>


using namespace std;
using ll = long long;
using ull = unsigned long long;

const ll INF = 1e16;
const ll MOD = 1e9 + 7;

#define REP(i, n) for(int i = 0; i < n; i++)



int main() {
    string s;
    cin >> s;
    
    ll w = 0;
    REP(i, s.size()){
        if(s[i] == 'w')w++;
    }

    ll ans = 0;
    REP(i, s.size()){
        if(s[i] == 'c'){
            if(w & 1){
                ans += (w - 1) / 2 * w;
            }
            else{
                ans += w / 2 * (w - 1);
            }
        }
        else if(s[i] == 'w'){
            w--;
        }
    }
    
    cout << ans << endl;
}
0