結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | nak3 |
提出日時 | 2017-03-26 16:54:25 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 381 bytes |
コンパイル時間 | 1,272 ms |
コンパイル使用メモリ | 159,800 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 06:30:58 |
合計ジャッジ時間 | 2,156 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define INF 2000000000 #define MOD 1000000007 typedef long long ll; typedef pair<int, int> P; int main() { string s; cin >> s; ll numw=0; ll sum=0; for (int i = s.size()-1; i >= 0; i--) { if (s[i]=='c') { if (numw>=2) { sum+=numw*(numw-1)/2; } } else if (s[i]=='w') { numw++; } } cout << sum << "\n"; }