92162024-02-18 18:12:56KristófTáblajáték 2 (70 pont)cpp14Hibás válasz 23/703ms4124 KiB
#include <iostream>

using namespace std;
struct poz{

int sor;
int hely;

}typedef poz;

int main()
{
    struct poz tabla;
    tabla.sor=0;
    tabla.hely=0;
    int n;
    int num;
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>num;
        if(num==0){
            tabla.sor++;
            tabla.hely=tabla.hely*3;
        }
        else if(num==1){
            tabla.sor++;
            tabla.hely=tabla.hely*3+1;
        }
        else if(num==2){
            tabla.sor++;
            tabla.hely=tabla.hely*3+2;
        }
        else if(num==3){
            tabla.sor--;
            tabla.hely=tabla.hely/3;
        }
        else if(num==4){
            tabla.hely--;
        }
        else{
            tabla.hely++;
        }

    }
    cout<<tabla.sor<<endl;
    if(tabla.hely<3){
        cout<<tabla.hely;
        return 0;
    }
    else{
    int szamm=(tabla.hely/3*10)+tabla.hely%3;
    cout<<szamm;
    }
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base23/70
1Elfogadva0/03ms1872 KiB
2Hibás válasz0/03ms2120 KiB
3Részben helyes1/23ms2296 KiB
4Részben helyes1/33ms2544 KiB
5Részben helyes1/33ms2652 KiB
6Részben helyes1/33ms2860 KiB
7Részben helyes1/33ms3064 KiB
8Részben helyes1/33ms3072 KiB
9Részben helyes1/33ms3224 KiB
10Részben helyes1/33ms3356 KiB
11Részben helyes1/33ms3436 KiB
12Részben helyes1/33ms3568 KiB
13Részben helyes1/33ms3600 KiB
14Részben helyes1/33ms3676 KiB
15Részben helyes1/43ms3680 KiB
16Részben helyes1/43ms3708 KiB
17Részben helyes1/43ms3800 KiB
18Részben helyes1/43ms3924 KiB
19Részben helyes1/43ms3936 KiB
20Részben helyes1/43ms4012 KiB
21Részben helyes1/43ms4044 KiB
22Részben helyes1/43ms4120 KiB
23Elfogadva3/33ms4124 KiB