結果

問題 No.2226 Hello, Forgotten World!
ユーザー rlangevinrlangevin
提出日時 2023-02-24 21:55:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,616 KB
実行使用メモリ 83,172 KB
最終ジャッジ日時 2024-09-13 05:25:38
合計ジャッジ時間 2,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(X, Y):
    for i in range(len(X)):
        if X[i] != Y[i] and X[i] != "?":
            return 0
    return 1

T = int(input())
hello = list("helloworld")
for _ in range(T):
    N = int(input())
    S = list(input())
    flag = 0
    for i in range(N - 10, -1, -1):
        if S[i:i+10] == hello:
            flag = 1
            break
    if flag:
        for i in range(N):
            if S[i] == "?":
                S[i] = "a"
        print("".join(S))
        continue
        
        
    L = []
    for i in range(N - 10, -1, -1):
        temp = [None] * N
        if check(S[i:i+10], hello):
            for j in range(N):
                temp[j] = S[j]
            temp[i:i+10] = hello
            for j in range(N):
                if temp[j] == "?":
                    temp[j] = "a"
            L.append("".join(temp))
    if not L:
        print(-1)
        continue
    else:
        print(min(L))
0