結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | yansi819 |
提出日時 | 2024-04-10 12:39:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 923 bytes |
コンパイル時間 | 4,651 ms |
コンパイル使用メモリ | 264,872 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 14:39:37 |
合計ジャッジ時間 | 4,817 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 26 ms
5,248 KB |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 5 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 4 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; void solve() { int N; string S, T, C = "helloworld", ans; cin >> N >> S; set<string> st; int pos = -1, j = 0; ans = string(N, 'z'); for (int i = 0; i < N - 9; i++) { bool flag = true; for (int j = 0; j < 10; j++) { if (S[i + j] != C[j] && S[i + j] != '?') { flag = false; break; } } if (!flag) continue; T = ""; for (int j = 0; j < N; j++) { if (j == i) { T += C; j += 9; } else if (S[j] == '?'){ T += 'a'; } else { T += S[j]; } } if (ans > T) ans = T; } if (ans == string(N, 'z')) { cout << -1 << endl; return; } cout << ans << endl; } int main() { int T; cin >> T; while (T--) solve(); return 0; }