結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | nephrologist |
提出日時 | 2023-02-25 18:25:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 69,616 KB |
最終ジャッジ日時 | 2024-09-13 14:15:32 |
合計ジャッジ時間 | 1,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,092 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 | - |
ソースコード
import sys input = sys.stdin.readline hoge = list("helloworld") t = int(input()) for _ in range(t): n = int(input()) s = list(input().rstrip()) if n < 10: print(-1) continue ans = -1 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: ans = start if ans == -1: print(ans) continue for i in range(10): s[ans + i] = hoge[i] for i in range(n): if s[i] == "?": s[i] = "a" print("".join(s)) # exit()