結果

問題 No.150 "良問"(良問とは言っていない
ユーザー ikdikd
提出日時 2016-07-23 18:20:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 53,828 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-01 10:00:51
合計ジャッジ時間 1,593 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 22 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 6 ms
4,376 KB
testcase_11 AC 6 ms
4,376 KB
testcase_12 AC 5 ms
4,380 KB
testcase_13 AC 5 ms
4,376 KB
testcase_14 AC 8 ms
4,376 KB
testcase_15 AC 6 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 3 ms
4,380 KB
testcase_18 AC 6 ms
4,380 KB
testcase_19 AC 8 ms
4,380 KB
testcase_20 AC 8 ms
4,380 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