結果

問題 No.2226 Hello, Forgotten World!
ユーザー lloyzlloyz
提出日時 2023-02-24 22:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 81,460 KB
実行使用メモリ 78,164 KB
最終ジャッジ日時 2024-09-13 05:38:24
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,972 KB
testcase_01 AC 184 ms
78,164 KB
testcase_02 AC 118 ms
76,312 KB
testcase_03 AC 96 ms
76,372 KB
testcase_04 AC 64 ms
75,736 KB
testcase_05 AC 97 ms
75,924 KB
testcase_06 AC 77 ms
76,136 KB
testcase_07 AC 84 ms
75,884 KB
testcase_08 AC 56 ms
70,852 KB
testcase_09 AC 85 ms
75,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

helloworld = "helloworld"
for _ in range(int(input())):
    n = int(input())
    S = list(input())
    ANS = []
    for i in range(n - 9):
        SC = S[:]
        flag = True
        for j in range(10):
            if SC[i + j] == '?':
                continue
            if SC[i + j] == helloworld[j]:
                continue
            flag = False
            break
        if flag:
            for j in range(10):
                if SC[i + j] == '?':
                    SC[i + j] = helloworld[j]
            for j in range(n):
                if SC[j] == '?':
                    SC[j] = 'a'
            ANS.append(''.join(SC))
    if len(ANS) == 0:
        print(-1)
    else:
        ANS.sort()
        print(ANS[0])
0