Submission #63024655
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
int main() {
string S;
cin >> S;
for (int i = 0; i < S.size() - 1; i++) {
if (S[i] == 'W' && S[i + 1] == 'A') {
int wi = i;
while (wi >= 0 && S[wi - 1] == 'W') {
S[wi] = 'C';
wi--;
}
S[wi] = 'A';
S[i + 1] = 'C';
}
}
cout << S << endl;
}
Submission Info
| Submission Time | |
|---|---|
| Task | C - Debug |
| User | thedekopin0108 |
| Language | C++ 17 (gcc 12.2) |
| Score | 300 |
| Code Size | 435 Byte |
| Status | AC |
| Exec Time | 6 ms |
| Memory | 3824 KiB |
Compile Error
Main.cpp: In function ‘int main()’:
Main.cpp:8:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
8 | for (int i = 0; i < S.size() - 1; i++) {
| ~~^~~~~~~~~~~~~~
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 300 / 300 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | example_00.txt, example_01.txt, example_02.txt |
| All | example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| example_00.txt | AC | 1 ms | 3440 KiB |
| example_01.txt | AC | 1 ms | 3368 KiB |
| example_02.txt | AC | 1 ms | 3464 KiB |
| hand_00.txt | AC | 5 ms | 3776 KiB |
| hand_01.txt | AC | 5 ms | 3816 KiB |
| hand_02.txt | AC | 5 ms | 3764 KiB |
| hand_03.txt | AC | 5 ms | 3708 KiB |
| hand_04.txt | AC | 1 ms | 3560 KiB |
| hand_05.txt | AC | 1 ms | 3484 KiB |
| hand_06.txt | AC | 5 ms | 3764 KiB |
| random_00.txt | AC | 5 ms | 3756 KiB |
| random_01.txt | AC | 6 ms | 3772 KiB |
| random_02.txt | AC | 5 ms | 3768 KiB |
| random_03.txt | AC | 5 ms | 3748 KiB |
| random_04.txt | AC | 5 ms | 3680 KiB |
| random_05.txt | AC | 5 ms | 3680 KiB |
| random_06.txt | AC | 5 ms | 3756 KiB |
| random_07.txt | AC | 5 ms | 3768 KiB |
| random_08.txt | AC | 5 ms | 3808 KiB |
| random_09.txt | AC | 5 ms | 3792 KiB |
| random_10.txt | AC | 5 ms | 3780 KiB |
| random_11.txt | AC | 5 ms | 3768 KiB |
| random_12.txt | AC | 5 ms | 3740 KiB |
| random_13.txt | AC | 5 ms | 3764 KiB |
| random_14.txt | AC | 5 ms | 3824 KiB |
| random_15.txt | AC | 5 ms | 3816 KiB |
| random_16.txt | AC | 5 ms | 3800 KiB |
| random_17.txt | AC | 5 ms | 3752 KiB |
| random_18.txt | AC | 5 ms | 3772 KiB |
| random_19.txt | AC | 5 ms | 3752 KiB |