結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | lllllll88938494 |
提出日時 | 2023-03-22 05:32:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 73,728 KB |
最終ジャッジ日時 | 2024-09-18 14:42:36 |
合計ジャッジ時間 | 1,270 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,480 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 | - |
ソースコード
t = int(input()) h='helloworld' for _ in range(t): n=int(input()) s=input() F = 0 if n < 10: print(-1) continue for i in range(n-len(h),-1,-1): f = 0 for j in range(len(h)): if s[i+j] == h[j] or s[i+j] == '?': continue else: f = 1 break if f == 0: F=1 for k in range(n): if i<= k <= i + len(h) - 1: print(h[k-i],end='') else: if s[k] =='?': print('a',end='') else: print(s[k],end='') print() break if F == 0: print(-1)