結果
| 問題 | No.3374 Caesar Shift Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-04 15:00:26 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 613 bytes |
| 記録 | |
| コンパイル時間 | 1,611 ms |
| コンパイル使用メモリ | 194,344 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-12-04 15:00:31 |
| 合計ジャッジ時間 | 3,535 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
28 | scanf("%d", &T);
| ~~~~~^~~~~~~~~~
main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
30 | scanf("%d%s", &n, s + 1);
| ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
const int N = 2000010, MOD = 998244353, INF = 0x3f3f3f3f;
int n, m, w[N];
char s[N];
void solve() {
int v = 0;
for (int i = 1; i < n + 1; i++) {
if (i & 1) {
if (!v && s[i] == 'C') s[i] = 'A';
else break;
} else {
if (s[i] != 'C') s[i]++, v |= s[i] == 'B';
else break;
}
}
puts(s + 1);
}
int main() {
int T;
scanf("%d", &T);
while (T--) {
scanf("%d%s", &n, s + 1);
solve();
}
return 0;
}