結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | shoshoshom |
提出日時 | 2023-02-24 23:26:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 1,039 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 202,776 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 06:10:14 |
合計ジャッジ時間 | 2,660 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 31 ms
6,940 KB |
testcase_02 | AC | 32 ms
6,940 KB |
testcase_03 | AC | 18 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | AC | 19 ms
6,944 KB |
testcase_06 | AC | 8 ms
6,940 KB |
testcase_07 | AC | 12 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 13 ms
6,944 KB |
ソースコード
#include <cctype> #ifndef SHO_LOCAL #include <bits/stdc++.h> #define debug(...) ; #else #include "debug.h" #endif #define all(x) (x).begin(), (x).end() #define lb(x, a) lower_bound(all(x), (a)) - (x).begin() typedef long long ll; using namespace std; int main() { iostream::sync_with_stdio(0), cin.tie(0); int T; cin >> T; int n; string s; const string S = "helloworld"; const string inf = string(1000, 'z'); int m = (int)S.size(); while (T--) { cin >> n >> s; string ans = inf; for (int i = 0; i + 10 <= n; i++) { bool ok = true; string now = ""; for (int j = 0; ok && j < n; j++) { if (j >= i && j < i + 10) { ok &= s[j] == '?' || s[j] == S[j - i]; now += S[j - i]; } else { if (s[j] == '?') { now += 'a'; } else { now += s[j]; } } } if (ok) { ans = min(ans, now); } } if (ans == inf) { ans = "-1"; } cout << ans << '\n'; } return 0; }