結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | nephrologist |
提出日時 | 2023-02-25 18:34:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 837 bytes |
コンパイル時間 | 421 ms |
コンパイル使用メモリ | 82,084 KB |
実行使用メモリ | 121,108 KB |
最終ジャッジ日時 | 2024-09-13 14:21:22 |
合計ジャッジ時間 | 3,699 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,920 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
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): 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()