結果

問題 No.2226 Hello, Forgotten World!
ユーザー timitimi
提出日時 2023-02-24 21:53:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 81,716 KB
最終ジャッジ日時 2024-09-13 05:24:42
合計ジャッジ時間 1,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,552 KB
testcase_01 AC 190 ms
81,716 KB
testcase_02 AC 111 ms
76,836 KB
testcase_03 AC 85 ms
76,360 KB
testcase_04 AC 60 ms
75,628 KB
testcase_05 AC 88 ms
76,164 KB
testcase_06 AC 68 ms
76,188 KB
testcase_07 AC 74 ms
76,024 KB
testcase_08 AC 51 ms
71,400 KB
testcase_09 AC 74 ms
76,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
W='helloworld'
for _ in range(T):
  N=int(input())
  S=list(input())
  A=[]
  for i in range(N-9):
    SS=S.copy()
    f=0
    for j in range(10):
      if SS[i+j]!=W[j] and SS[i+j]!='?':
        f=1
        break 
      if SS[i+j]=='?':
        SS[i+j]=W[j]
    if f==0:
      SS=''.join(SS)
      SS=SS.replace('?','a')
      A.append(SS)
  if len(A)==0:
    print(-1)
  else:
    print(sorted(A)[0])
0