結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | h_noson |
提出日時 | 2016-03-13 15:05:04 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 581 bytes |
コンパイル時間 | 461 ms |
コンパイル使用メモリ | 60,276 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-25 11:16:10 |
合計ジャッジ時間 | 1,318 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define RREP(i,s,e) for (i = e-1; i >= s; i--) #define rrep(i,n) RREP(i,0,n) #define REP(i,s,e) for (i = s; i < e; i++) #define rep(i,n) REP(i,0,n) #define INF 1e8 typedef long long ll; int main() { string s; ll c, cw, cww; cin >> s; c = cw = cww = 0; for (auto x : s) { if (x == 'c') c++; else if (x == 'w' && c > 0) { if (cw > 0) cww += cw; cw += c; } } cout << cww << endl; return 0; }