結果

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

ソースコード

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;
      return 0;
    }
  }

  cout << -1 << endl;

  return 0;
}
0