結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | umezo |
提出日時 | 2023-02-24 22:38:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,013 bytes |
コンパイル時間 | 2,181 ms |
コンパイル使用メモリ | 202,828 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 05:48:12 |
合計ジャッジ時間 | 2,543 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 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 | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); string a="helloworld"; int t; cin>>t; while(t--){ int n; string s; cin>>n>>s; bool b=false; rep(i,n-9){ if(s.substr(i,10)==a){ b=true; break; } } if(b){ rep(i,n){ if(s[i]=='?') cout<<'a'; else cout<<s[i]; } cout<<'\n'; continue; } int k=-1; for(int i=n-10;i>=0;i--){ bool f=true; for(int j=0;j<10;j++){ if(s[i+j]=='?') continue; if(s[i+j]!=a[j]) f=false; } if(f){ k=i; break; } } if(k==-1) cout<<-1<<'\n'; else{ rep(i,n){ if(s[i]!='?') cout<<s[i]; else if(k<=i && i<k+10) cout<<a[i-k]; else cout<<'a'; } cout<<'\n'; } } return 0; }