65482023-12-08 15:02:51BakosCsongorA Négyszögletű Kerek Erdőcpp17Elfogadva 100/1003ms4232 KiB
// NOTE: it is recommended to use this even if you don't understand the following code.

#include <fstream>
#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main() {
    // uncomment the two following lines if you want to read/write from files
    // ifstream cin("input.txt");
    // ofstream cout("output.txt");

    int N, A, B;
    cin >> N >> A >> B;
     if(A == B){
        cout << "Tul konnyu!";
        return 0;
    }
    if(A < B){
        int x;
        x = B - A + 1;
        if(x < 5){
            cout << "Tul konnyu!";
            return 0;
        }
        else{
            cout << x;
            return 0;
        }

    }
    else {
        int x;
        x = (N - A) + B + 1;
        if(x < 5){
            cout << "Tul konnyu!";
            return 0;
        }
        else{
            cout << x;
            return 0;
        }
    }

    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
subtask10/0
1Elfogadva3ms2024 KiB
2Elfogadva3ms2180 KiB
subtask240/40
3Elfogadva3ms2320 KiB
4Elfogadva3ms2560 KiB
5Elfogadva3ms2776 KiB
6Elfogadva3ms2936 KiB
7Elfogadva3ms3112 KiB
8Elfogadva3ms3228 KiB
9Elfogadva3ms3196 KiB
subtask320/20
10Elfogadva3ms3316 KiB
11Elfogadva3ms3340 KiB
12Elfogadva3ms3524 KiB
13Elfogadva3ms3576 KiB
14Elfogadva3ms3580 KiB
subtask440/40
15Elfogadva3ms3780 KiB
16Elfogadva3ms3896 KiB
17Elfogadva3ms3908 KiB
18Elfogadva3ms4028 KiB
19Elfogadva3ms4152 KiB
20Elfogadva3ms4232 KiB
21Elfogadva3ms4232 KiB