結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
btk
|
| 提出日時 | 2016-02-27 00:19:29 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 335 bytes |
| コンパイル時間 | 1,422 ms |
| コンパイル使用メモリ | 158,456 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-25 11:27:17 |
| 合計ジャッジ時間 | 2,335 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
cin>>s;
int n=s.size();
int res=114514;
for(int i = 0; i < n; i++)for(int j = i+1; j < n; j++)for(int k = j+1; k < n; k++)
if(s[i]=='c'&&s[j]=='w'&&s[k]=='w')res=min(res,k-i+1);
if(res==114514)res=-1;
cout<<res<<endl;
return 0;
}
btk