71182023-12-31 09:07:07MagyarKendeSZLGTáblajáték 2 (70 pont)cpp17Hibás válasz 26/703ms4260 KiB
#include <bits/stdc++.h>

#define speed cin.tie(0); ios::sync_with_stdio(0)
#define cinv(v) for (auto& e : v) cin >> e;
#define all(v) v.begin(), v.end()
#define has(s, e) s.count(e)

using namespace std;
using ll = long long;
using point = array<int, 2>;

int main() {
    speed;

    int K, row = 0, col = 0;
    cin >> K;
    while (K--) {
        char m;
        cin >> m;

        if (m == '0') {
            row++;
            col *= 10;
        }
        else if (m == '1') {
            row++;
            col *= 10;
            col++;
        }
        else if (m == '2') {
            row++;
            col *= 10;
            col += 2;
        }
        else if (m == '3') {
            row--;
            col /= 10;
        }
        else if (m == '4') {
            if (col % 10) {
                col--;
            } else {
                col -= 8;
            }
        }
        else {
            if (col % 10 == 2) {
                col += 8;
            } else {
                col++;
            }
        }
    }

    cout << row << '\n' << col;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base26/70
1Elfogadva0/03ms1892 KiB
2Hibás válasz0/03ms2088 KiB
3Elfogadva2/23ms2316 KiB
4Részben helyes1/33ms2532 KiB
5Elfogadva3/33ms2736 KiB
6Részben helyes1/33ms2968 KiB
7Részben helyes1/33ms2928 KiB
8Részben helyes1/33ms2932 KiB
9Részben helyes1/33ms2936 KiB
10Részben helyes1/33ms3068 KiB
11Részben helyes1/33ms3152 KiB
12Részben helyes1/33ms3284 KiB
13Részben helyes1/33ms3376 KiB
14Részben helyes1/33ms3376 KiB
15Részben helyes1/43ms3508 KiB
16Részben helyes1/43ms3732 KiB
17Részben helyes1/43ms3948 KiB
18Részben helyes1/43ms4032 KiB
19Részben helyes1/43ms4032 KiB
20Részben helyes1/43ms4040 KiB
21Részben helyes1/43ms4048 KiB
22Részben helyes1/43ms4180 KiB
23Elfogadva3/33ms4260 KiB