Submission #63024157


Source Code Expand

Copy
#include<bits/stdc++.h>
#define int long long
#define vi vector<int>
#define vvi vector<vi>
#define f(i,n) for(int i=0; i<n; i++)
#define rf(i,n) for(int i=n-1; i>=0; i++)
#define all(v) v.begin(),v.end()
#define mxe(v) *max_element(all(v))
#define mne(v) *min_element(all(v))
#define srt(v) sort(all(v))
#define Error(x...) { cout << "(" << #x << ")" << " = ( "; printIt(x); }
using namespace std;
void printv(vi v){ for(auto val: v) cout << val << ' '; cout << '\n';}
void prints(vector<string> v){ for(auto val: v) cout << val << ' '; cout << '\n';}
void solve(){
string s;
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<bits/stdc++.h>
 
#define int long long
 
#define vi vector<int>
#define vvi vector<vi>
#define f(i,n) for(int i=0; i<n; i++)
#define rf(i,n) for(int i=n-1; i>=0; i++)
#define all(v) v.begin(),v.end()
#define mxe(v) *max_element(all(v))
#define mne(v) *min_element(all(v))
#define srt(v) sort(all(v))
#define Error(x...) { cout << "(" << #x << ")" << " = ( "; printIt(x); }
 
using namespace std;
 
void printv(vi v){ for(auto val: v) cout << val << ' '; cout << '\n';}
void prints(vector<string> v){ for(auto val: v) cout << val << ' '; cout << '\n';}

void solve(){
    string s;
    cin >> s;
    int n = s.length();
    bool flag = 0;
    string res = s;
    
    for(int i = n - 1; i >= 0; i--)
    {
        if(flag && s[i] == 'W')
        {
            res[i] = 'A';
            res[i+1] = 'C';
        }
        else if(i > 0 && s[i] == 'A' && s[i - 1] == 'W')
        {
            flag = 1;
            res[i] = 'C';
            res[i-1] = 'A';
        }
        else
        {
            flag = 0;
        }
    }
    cout<<res<<endl;
}


int32_t main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t = 1;
    while(t--) solve();
}

Submission Info

Submission Time
Task C - Debug
User aryanishappy
Language C++ 20 (gcc 12.2)
Score 300
Code Size 1225 Byte
Status AC
Exec Time 3 ms
Memory 3948 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 30
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 3472 KB
example_01.txt AC 1 ms 3476 KB
example_02.txt AC 1 ms 3532 KB
hand_00.txt AC 2 ms 3788 KB
hand_01.txt AC 2 ms 3788 KB
hand_02.txt AC 2 ms 3852 KB
hand_03.txt AC 2 ms 3800 KB
hand_04.txt AC 1 ms 3480 KB
hand_05.txt AC 1 ms 3380 KB
hand_06.txt AC 2 ms 3796 KB
random_00.txt AC 3 ms 3892 KB
random_01.txt AC 3 ms 3784 KB
random_02.txt AC 2 ms 3852 KB
random_03.txt AC 3 ms 3780 KB
random_04.txt AC 2 ms 3844 KB
random_05.txt AC 2 ms 3840 KB
random_06.txt AC 2 ms 3840 KB
random_07.txt AC 2 ms 3832 KB
random_08.txt AC 2 ms 3804 KB
random_09.txt AC 2 ms 3944 KB
random_10.txt AC 2 ms 3808 KB
random_11.txt AC 2 ms 3852 KB
random_12.txt AC 2 ms 3812 KB
random_13.txt AC 2 ms 3852 KB
random_14.txt AC 2 ms 3820 KB
random_15.txt AC 2 ms 3804 KB
random_16.txt AC 2 ms 3712 KB
random_17.txt AC 2 ms 3836 KB
random_18.txt AC 2 ms 3784 KB
random_19.txt AC 2 ms 3948 KB


2025-04-04 (Fri)
06:49:35 +00:00