結果

問題 No.2226 Hello, Forgotten World!
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-24 22:50:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,108 KB
最終ジャッジ日時 2024-09-13 05:53:53
合計ジャッジ時間 1,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,164 KB
testcase_01 AC 292 ms
75,836 KB
testcase_02 AC 111 ms
76,108 KB
testcase_03 AC 108 ms
75,908 KB
testcase_04 AC 66 ms
75,912 KB
testcase_05 AC 111 ms
76,084 KB
testcase_06 AC 79 ms
75,788 KB
testcase_07 AC 88 ms
75,820 KB
testcase_08 AC 66 ms
76,020 KB
testcase_09 AC 91 ms
75,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

hello = "helloworld"

def solve():
    n = int(input())
    S = input()

    ans = "{"
    for i in range(n-9):
        ok = 1
        for j in range(10):
            if S[i+j] != "?" and S[i+j] != hello[j]:
                ok = 0

        if ok == 0:
            continue

        cand = []
        for j,s in enumerate(S):
            if i <= j < i+10:
                cand.append(hello[j-i])
            else:
                if s == "?":
                    s = "a"
                cand.append(s)

        cand = "".join(cand)
        if cand < ans:
            ans = cand
    if ans == "{":
        ans = -1
    return ans      

t = int(input())
for _ in range(t):
    print(solve())
0