15602022-11-25 11:48:45bzsofiaJárda-L (40)cpp11Hibás válasz 6/403ms4128 KiB
// Jarda I es L alaku jarolapokkal.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>

using namespace std;

int i, n, x[30];

int main()
{
	cin >> n;

	x[1] = 1;
	x[2] = 2;
	x[3] = 5;
	x[4] = 11;
	x[5] = 25;

	for (i = 6; i <= n; ++i)
	{
		x[i] = x[i - 1] +  x[i - 2] + 2 * x[i - 3];
	}

	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
RészfeladatÖsszpontTesztVerdiktIdőMemória
base6/40
1Elfogadva0/03ms1872 KiB
2Hibás válasz0/02ms2268 KiB
3Elfogadva2/22ms2344 KiB
4Elfogadva2/22ms2556 KiB
5Elfogadva2/22ms2756 KiB
6Hibás válasz0/22ms2964 KiB
7Hibás válasz0/22ms2992 KiB
8Hibás válasz0/32ms3196 KiB
9Hibás válasz0/32ms3316 KiB
10Hibás válasz0/32ms3440 KiB
11Hibás válasz0/32ms3608 KiB
12Hibás válasz0/32ms3808 KiB
13Hibás válasz0/32ms3928 KiB
14Hibás válasz0/32ms3920 KiB
15Hibás válasz0/32ms3920 KiB
16Hibás válasz0/32ms4052 KiB
17Hibás válasz0/32ms4128 KiB