56212023-08-09 23:12:23999Táblajáték 2 (70 pont)cpp17Hibás válasz 21/703ms4912 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main() {
    int n;
    cin >> n;
    string ss = "0";
    int s = 0;
    
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        
        if (a == 0) {
            s++;
            if(ss!="0"){
            ss += '0';}
        } else if (a == 1) {
            s++;
            ss += '1';
        } else if (a == 2) {
            s++;
            ss += '2';
        } else if (a == 3) {
            s--;
            ss = ss.substr(0, ss.size() - 1);
        } else if (a == 4) {
            if (ss[ss.size() - 1] == '0') {
                /*int moves = 0;
                while (ss[ss.size() - 1] == '0') {
                    ss = ss.substr(0, ss.size() - 1);
                    moves++;
                }
                while (moves--) {
                    ss += '2';
                }
            }*/
            string c=to_string(ss[ss.size()-2]-'0'-1);
            ss=ss.substr(0,ss.size()-2)+c+"2";
            }
            else {
                string c = to_string(ss[ss.size() - 1] - '0' - 1);
                ss = ss.substr(0, ss.size() - 1) + c;
            }
        } else {
            if (ss[ss.size() - 1] == '2') {
                /*int moves = 0;
                while (ss[ss.size() - 1] == '2') {
                    ss = ss.substr(0, ss.size() - 1);
                    moves++;
                }
                while (moves--) {
                    ss += '0';
                }*/
                string c=to_string(ss[ss.size()-2]-'0'+1);
                ss=ss.substr(0,ss.size()-2)+c+"0";
            } else {
                string c = to_string(ss[ss.size() - 1] - '0' + 1);
                ss = ss.substr(0, ss.size() - 1) + c;
            }
        }
    }
    
    cout << s << endl << ss << endl;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base21/70
1Elfogadva0/03ms1812 KiB
2Hibás válasz0/03ms2052 KiB
3Részben helyes1/23ms2272 KiB
4Részben helyes1/33ms2480 KiB
5Részben helyes1/33ms2644 KiB
6Részben helyes1/33ms2852 KiB
7Részben helyes1/33ms3064 KiB
8Részben helyes1/33ms3276 KiB
9Részben helyes1/32ms3392 KiB
10Részben helyes1/33ms3472 KiB
11Részben helyes1/32ms3596 KiB
12Részben helyes1/33ms3956 KiB
13Részben helyes1/33ms3952 KiB
14Részben helyes1/33ms4076 KiB
15Részben helyes1/43ms4288 KiB
16Részben helyes1/43ms4324 KiB
17Részben helyes1/43ms4480 KiB
18Részben helyes1/43ms4492 KiB
19Részben helyes1/42ms4496 KiB
20Részben helyes1/43ms4628 KiB
21Részben helyes1/43ms4860 KiB
22Részben helyes1/42ms4912 KiB
23Részben helyes1/32ms4912 KiB