4752021-11-03 17:48:33TSomaToronyépítés (1,1,3,3)cpp11Accepted 50/504ms1972 KiB
#include <iostream>

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

    int N;
    std::cin >> N;

    int a = 2;
    int b = 4;
    int c = 10;
    for (int n = 3; n < N; n += 3)
    {
        a = (2 * c + 2 * a);
        b = (2 * a + 2 * b);
        c = (2 * b + 2 * c);

        if (a > 20210108)
            a %= 20210108;
        if (b > 20210108)
            b %= 20210108;
        if (c > 20210108)
            c %= 20210108;
    }

    switch (N % 3)
    {
    case 0:
        std::cout << c;
        break;
    case 1:
        std::cout << a;
        break;
    case 2:
        std::cout << b;
        break;
    }
}
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/02ms1892 KiB
2Accepted0/01ms1912 KiB
3Accepted3/31ms1968 KiB
4Accepted3/31ms1968 KiB
5Accepted4/41ms1968 KiB
6Accepted4/41ms1972 KiB
7Accepted4/44ms1968 KiB
8Accepted4/42ms1964 KiB
9Accepted4/41ms1972 KiB
10Accepted4/41ms1972 KiB
11Accepted4/42ms1972 KiB
12Accepted4/44ms1968 KiB
13Accepted4/44ms1972 KiB
14Accepted4/42ms1964 KiB
15Accepted2/21ms1968 KiB
16Accepted2/21ms1968 KiB