結果

問題 No.150 "良問"(良問とは言っていない
ユーザー ikd
提出日時 2016-07-23 18:20:18
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 56,024 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 02:01:25
合計ジャッジ時間 1,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;
string good="good", pro="problem";

int cal(string S, int g, int p){
    int cnt=0;
    for(int i=0; i<4; i++){
        if(S[i+g]!=good[i]) cnt++;
    }
    for(int i=0; i<7; i++){
        if(S[i+p]!=pro[i]) cnt++;
    }
    return cnt;
}

int main(){

    int N;
    cin>> N;
    for(int i=0; i<N; i++){
        string S;
        cin>> S;
        int ans=105;
        for(int g=0; g<=S.size()-7-4; g++){
            for(int p=g+4; p<=S.size()-7; p++){
                ans=min(ans, cal(S, g, p));
            }
        }
        cout<< ans<< endl;
    }

    return 0;
}
0