20992022-12-19 12:47:39bzsofiaJárda-L (40)cpp11Runtime error 36/403ms4064 KiB
// Járda I és L alakú járólapokkal.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

int i, j, n;

int main()
{
    cin >> n;
    vector <unsigned long long> x(n + 1);

    x[0] = 1;
    x[1] = 1;
    x[2] = 2;
    x[3] = 5;
    for (i = 4; i <= n; ++i)
    {
        x[i] = x[i - 1] + x[i - 2];
        for (j = 0; j <= i-3; ++j)
        {
            x[i] += 2*x[j];
        }
    }

    cout << x[n];

    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started:
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
SubtaskSumTestVerdictTimeMemory
base36/40
1Accepted0/03ms1812 KiB
2Accepted0/02ms2000 KiB
3Runtime error0/22ms2312 KiB
4Runtime error0/22ms2520 KiB
5Accepted2/22ms2620 KiB
6Accepted2/22ms2820 KiB
7Accepted2/22ms3024 KiB
8Accepted3/32ms3228 KiB
9Accepted3/32ms3432 KiB
10Accepted3/32ms3516 KiB
11Accepted3/32ms3532 KiB
12Accepted3/32ms3736 KiB
13Accepted3/32ms3808 KiB
14Accepted3/32ms4064 KiB
15Accepted3/32ms4052 KiB
16Accepted3/32ms4056 KiB
17Accepted3/32ms4052 KiB