結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-05 00:29:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,017 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 118,464 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 03:24:20 |
合計ジャッジ時間 | 1,896 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | - |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; void solve(){ ll N; string S, T, U="helloworld"; cin >> N >> S; for (int i=0; i<N; i++){ if (S[i] == '?') S[i] = 'a'; } T = S; vector<string> v; for (int i=0; i<=N-10; i++){ bool f=1; for (int j=0; j<10; j++){ if (S[i+j] != 'a' && S[i+j] != U[j]){ f=0; break; } if (S[i+j] == 'a') S[i+j] = U[j]; } if (f) v.push_back(S); for (int j=0; j<10; j++) S[i+j] = T[i+j]; } if (v.size() == 0){ cout << -1 << endl; return; } sort(v.begin(), v.end()); cout << v[0] << endl; } int main(){ int T; cin >> T; while(T){ T--; solve(); } return 0; }