結果

問題 No.150 "良問"(良問とは言っていない
ユーザー ikdikd
提出日時 2016-07-23 18:20:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 57,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-19 09:33:08
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 23 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 5 ms
6,944 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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