結果
問題 | No.2226 Hello, Forgotten World! |
ユーザー | yansi819 |
提出日時 | 2024-04-10 09:31:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 4,205 ms |
コンパイル使用メモリ | 263,960 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 11:20:09 |
合計ジャッジ時間 | 4,992 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 <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"; cin >> N >> S; int pos = -1, j = 0; for (int i = 0; i < S.size(); i++) { if (S[i] == C[j] || S[i] == '?') { if (j == 0) pos = i; j++; if (j == 10) break; } else { j = 0; pos = -1; } } if (pos != -1 && j < 10) pos = -1; if (pos == -1) { cout << -1 << endl; return; } for (int i = 0; i < S.size(); i++) { if (i == pos) { T += C; i += 9; } else if (S[i] == '?') { T += 'a'; } else { T += S[i]; } } cout << T << endl; } int main() { int T; cin >> T; while (T--) solve(); return 0; }