結果

問題 No.2226 Hello, Forgotten World!
ユーザー tamatotamato
提出日時 2023-02-24 21:29:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 82,904 KB
最終ジャッジ日時 2024-09-13 05:05:55
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,284 KB
testcase_01 AC 292 ms
82,904 KB
testcase_02 AC 295 ms
78,704 KB
testcase_03 AC 193 ms
77,180 KB
testcase_04 AC 84 ms
75,620 KB
testcase_05 AC 200 ms
77,464 KB
testcase_06 AC 118 ms
76,600 KB
testcase_07 AC 134 ms
76,504 KB
testcase_08 AC 77 ms
75,772 KB
testcase_09 AC 137 ms
76,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N = int(input())
        S = input().rstrip('\n')
        H = "helloworld"

        A = []
        for i in range(N - 10 + 1):
            T = []
            ok = 1
            for j in range(N):
                if i <= j <= i + 9:
                    if S[j] == "?":
                        T.append(H[j - i])
                    else:
                        if S[j] != H[j - i]:
                            ok = 0
                            break
                        else:
                            T.append(S[j])
                else:
                    if S[j] == "?":
                        T.append("a")
                    else:
                        T.append(S[j])
            if not ok:
                continue
            A.append("".join(T))
        if A:
            A.sort()
            print(A[0])
        else:
            print(-1)


if __name__ == '__main__':
    main()
0