結果

問題 No.2226 Hello, Forgotten World!
ユーザー nephrologistnephrologist
提出日時 2023-02-25 18:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 125,000 KB
最終ジャッジ日時 2024-09-13 14:22:25
合計ジャッジ時間 1,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 202 ms
125,000 KB
testcase_02 AC 81 ms
76,764 KB
testcase_03 AC 78 ms
77,184 KB
testcase_04 AC 56 ms
69,888 KB
testcase_05 AC 80 ms
77,284 KB
testcase_06 AC 68 ms
75,904 KB
testcase_07 AC 74 ms
76,528 KB
testcase_08 AC 50 ms
65,408 KB
testcase_09 AC 70 ms
76,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline
hoge = list("helloworld")
t = int(input())
for _ in range(t):
    n = int(input())
    s = list(input().rstrip())
    for i in range(n):
        if s[i] == "?":
            s[i] = "`"
    ans = -1
    kouho = []
    for start in range(n - 9)[::-1]:
        okflag = 1
        for i in range(10):
            if s[start + i] == hoge[i] or s[start + i] == "`":
                continue
            else:
                okflag = 0
                break
        if okflag:
            temp = s[:]
            for i in range(10):
                temp[i + start] = hoge[i]
            kouho.append(temp)

    if not kouho:
        print(ans)
        continue
    kouho.sort()
    ans = kouho[0]
    for i in range(n):
        if ans[i] == "`":
            ans[i] = "a"
    print("".join(ans))
    # exit()
0