結果
| 問題 | No.3374 Caesar Shift Game |
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2025-11-24 12:37:42 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 612 bytes |
| コンパイル時間 | 416 ms |
| コンパイル使用メモリ | 41,440 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-11-24 12:37:46 |
| 合計ジャッジ時間 | 4,014 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 WA * 14 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:27:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
27 | scanf("%d", &tn);
| ~~~~~^~~~~~~~~~~
main.cpp:31:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
31 | scanf("%d%s", &n, s);
| ~~~~~^~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*-
*
* 3374.cc: No.3374 Caesar Shift Game - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
const int MAX_N = 500000;
/* typedef */
/* global variables */
char s[MAX_N + 4];
/* subroutines */
/* main */
int main() {
int tn;
scanf("%d", &tn);
while (tn--) {
int n;
scanf("%d%s", &n, s);
for (int i = 0; i < n; i++) {
if (! (i & 1)) { // A's turn
if (s[i] == 'C') s[i] = 'A';
else break;
}
else { // B's turn
if (s[i] != 'C') s[i]++;
else break;
}
}
puts(s);
}
return 0;
}
tnakao0123