結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | sepa38 |
提出日時 | 2023-02-24 21:56:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 459 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 73,068 KB |
最終ジャッジ日時 | 2024-09-13 05:26:57 |
合計ジャッジ時間 | 1,343 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,656 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
for _ in range(int(input())): n = int(input()) s = list(map(str, input())) t = list(map(str, "helloworld")) ng = 1 for i in reversed(range(n-9)): flg = 1 for j in range(10): if s[i+j] != t[j] and s[i+j] != "?": flg = 0 break if flg: s = s[:i] + t + s[i+j+1:] ng = 0 break if ng: print(-1) continue for i in reversed(range(n)): if s[i] == "?": s[i] = "a" print(*s, sep = "")