4772021-11-03 17:51:50TSomaToronyépítés (1,1,3,3)cpp11Accepted 50/504ms2036 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 + a);
        b = 2*(a + b);
        c = 2*(b + 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/02ms1880 KiB
2Accepted0/01ms1924 KiB
3Accepted3/32ms1988 KiB
4Accepted3/32ms1988 KiB
5Accepted4/41ms2000 KiB
6Accepted4/42ms2000 KiB
7Accepted4/44ms2000 KiB
8Accepted4/42ms2008 KiB
9Accepted4/41ms2016 KiB
10Accepted4/41ms2016 KiB
11Accepted4/42ms2020 KiB
12Accepted4/44ms2020 KiB
13Accepted4/43ms2032 KiB
14Accepted4/42ms2036 KiB
15Accepted2/22ms2032 KiB
16Accepted2/21ms2036 KiB