結果

問題 No.613 Solitude by the window
ユーザー uenokuuenoku
提出日時 2017-12-13 05:23:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,036 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 167,544 KB
実行使用メモリ 16,968 KB
最終ジャッジ日時 2024-12-14 08:18:58
合計ジャッジ時間 44,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 12 ms
10,020 KB
testcase_06 TLE -
testcase_07 AC 202 ms
10,496 KB
testcase_08 TLE -
testcase_09 AC 1,533 ms
10,024 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1,464 ms
5,248 KB
testcase_22 AC 1,438 ms
5,248 KB
testcase_23 AC 1,095 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (lli i = 0; i < (n); i++)
#define rrep(i, n) for (lli i = (n)-1; i >= 0; i--)
using namespace std;
using lli = long long int;
bool used[1100000001] = {};
int main()
{
    lli n, m;
    cin >> n >> m;
    lli v = 2;
    used[v] = true;
    n--;
    rep(i, m)
    {
        v = (v * (v + 4)) % m;
        if (i == n) {
            cout << v << endl;
            return 0;
        }
        if (used[v]) {
            lli vv = 2;
            rep(k, m)
            {
                if (vv == v) {
                    //                    cout << i << " " << k << endl;
                    lli p = (i + 1 - k);
                    lli ret = (n - k) % p;
                    rep(j, ret + 1)
                    {
                        vv = vv * (vv + 4);
                        vv %= m;
                    }
                    cout << vv << endl;
                    return 0;
                }
                vv = vv * (vv + 4);
                vv %= m;
            }
        }
    }
}
0