結果

問題 No.345 最小チワワ問題
ユーザー kyo1kyo1
提出日時 2020-04-12 11:56:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 166,164 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-22 02:18:35
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  string S;
  cin >> S;
  int sz = (int)S.size();
  int res = 1000;
  for (int i = 0; i < sz; i++) {
    for (int j = i + 1; j < sz; j++) {
      for (int k = j + 1; k < sz; k++) {
        if (S[i] == 'c' && S[j] == 'w' && S[k] == 'w') res = min(res, k - i);
      }
    }
  }
  cout << (res == 1000 ? -1 : res + 1) << '\n';
  return 0;
}
0