結果

問題 No.2226 Hello, Forgotten World!
ユーザー Hydrogen332Hydrogen332
提出日時 2024-09-28 01:20:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 899 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 201,436 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-28 01:20:39
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 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;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; i++)

string key = "helloworld";

int main() {
    cin.tie(nullptr);
    
    int T;
    cin >> T;
    
    rep(testcase, 0, T) {
        int N;
        string S;
        cin >> N >> S;
        
        int t = -1;
        rep(s, 0, N - 10 + 1) {
            bool res = true;
            
            rep(i, 0, 10) {
                if (S[s + i] != '?' && S[s + i] != key[i]) res = false;
            }
            
            if (res) t = s;
        }
        
        if (t == -1) {
            cout << -1 << '\n';
            continue;
        }
        
        rep(i, 0, 10) {
            S[t + i] = key[i];
        }
        
        rep(i, 0, N) {
            if (S[i] == '?') cout << 'a';
            else cout << S[i];
        }
        
        cout << '\n';
    }
}
0