結果

問題 No.2226 Hello, Forgotten World!
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-05-30 17:59:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 839 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 169,428 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-30 17:59:23
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int i,N;
    int flag = 0;
    string S;
    string T = "helloworld";
    int t;
    cin >> t;
    for(int p=0;p<t;p++){
        cin >> N >> S;
    for(i=N-10;i>-1;i--){
        for(int j=0;j<10;j++){
            if(!(S[i+j] == T[j] || S[i+j] == '?')){
                flag = 1;
            }
        }
        if(flag == 0){
            break;
        }
        flag = 0;
    }
    if(i == -1){
        cout << -1 << endl;
        continue;
    }
    for(int k=0;k<i;k++){
        if(S[k] == '?'){
            cout << "a";
        } else {
            cout << S[k];
        }
    }
    cout << "helloworld";
    for(int k=i+10;k<N;k++){
        if(S[k] == '?'){
            cout << "a";
        } else {
            cout << S[k];
        }
    }
    cout << endl;
    }
    
}
0