972021-01-11 22:49:31Babják PéterToronyépítés (2,2,3,3)cpp11Runtime error 34/404ms4980 KiB
#include <bits/stdc++.h>
#define P 20210108
using namespace std;
int main()
{
	int n;cin>>n;
	long long t[n+1];
	t[1]=0;
	t[2]=2;
	t[3]=2;
	t[4]=4;
	t[5]=8;
	t[6]=12;
	for(int i=7;i<n+1;i++)
	{
		t[i]=((t[i-2]*2)%P+(t[i-3]*2)%P)%P;
	}
	cout<<t[n]<<endl;
	return 0;
}
SubtaskSumTestVerdictTimeMemory
base34/40
1Accepted0/01ms1808 KiB
2Accepted0/01ms1840 KiB
3Accepted2/21ms1888 KiB
4Runtime error0/21ms1880 KiB
5Accepted3/31ms1784 KiB
6Accepted3/31ms1892 KiB
7Accepted3/34ms4980 KiB
8Accepted3/33ms3748 KiB
9Accepted3/31ms1888 KiB
10Accepted3/31ms1888 KiB
11Accepted3/33ms4792 KiB
12Accepted3/33ms4808 KiB
13Accepted4/43ms4544 KiB
14Accepted4/42ms3976 KiB
15Runtime error0/21ms1884 KiB
16Runtime error0/21ms1876 KiB