結果

問題 No.345 最小チワワ問題
ユーザー moti
提出日時 2016-11-05 19:28:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 1,472 ms
コンパイル使用メモリ 166,972 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 03:11:30
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 7 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {

  string S; cin >> S;
  bool ok = 0;
  int cnt = 0, cnter = 0;
  int w = 0;
  for(int i=0; i<S.size(); i++) {
    if(S[i] == 'c') {
      ok = 1;
    }
    if(ok) cnter ++;
    if(ok && S[i] == 'w') {
      cnt ++;
    }
    if(cnt == 2) {
      cout << cnter << endl;
      break;
    }
  }

  return 0;
}
0