4762021-11-03 17:49:45SzankaBenedekToronyépítés (1,1,3,3)cpp11Elfogadva 50/506ms2036 KiB
#include <iostream>
#include <vector>

using namespace std;

int main()
{
    cin.sync_with_stdio(false);
    cin.tie(nullptr);

    int input;
    cin >> input;

    // int v[input];
    // v[0] = 2;
    // v[1] = 4;
    // v[2] = 10; //8+2
    // for (int n = 3; n < input; n++)
    // {
    //     v[n] = (2 * v[n - 1] + 2 * v[n - 3]) % 20210108;
    // }

    // cout << v[input - 1] << "\n";

    int a = 2;
    int b = 4;
    int c = 10;

    for (;input > 3; input -= 3)
    {
        a = (2 * c + 2 * a) % 20210108;
        b = (2 * a + 2 * b) % 20210108;
        c = (2 * b + 2 * c) % 20210108;
    }
    if (input == 3)
    {
        cout << c << "\n";
        return 0;
    }
    if (input == 1)
    {
        cout << a << "\n";
        return 0;
    }
    if (input == 2)
    {
        cout << b << "\n";
        return 0;
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/02ms1888 KiB
2Elfogadva0/01ms1920 KiB
3Elfogadva3/31ms1984 KiB
4Elfogadva3/31ms1988 KiB
5Elfogadva4/42ms1992 KiB
6Elfogadva4/41ms1996 KiB
7Elfogadva4/46ms2000 KiB
8Elfogadva4/42ms2012 KiB
9Elfogadva4/41ms2008 KiB
10Elfogadva4/41ms2020 KiB
11Elfogadva4/42ms2024 KiB
12Elfogadva4/46ms2024 KiB
13Elfogadva4/44ms2028 KiB
14Elfogadva4/43ms2028 KiB
15Elfogadva2/21ms2036 KiB
16Elfogadva2/21ms2036 KiB