結果

問題 No.181 A↑↑N mod M
ユーザー mamekinmamekin
提出日時 2015-04-12 13:49:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,690 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 89,980 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-17 19:40:00
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
4,380 KB
testcase_15 WA -
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 RE -
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 AC 1 ms
4,376 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
4,380 KB
testcase_36 WA -
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 1 ms
4,380 KB
testcase_40 AC 2 ms
4,376 KB
testcase_41 WA -
testcase_42 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int a, n, m;
    cin >> a >> n >> m;
    if(n == 0){
        cout << 1 << endl;
        return 0;
    }

    vector<int> p(m, -1);
    int p1, p2;
    long long x = 1;
    for(int i=0; ; ++i){
        if(p[x] != -1){
            p1 = p[x];
            p2 = i - p[x];
            break;
        }
        p[x] = i;

        x *= a;
        x %= m;
    }

    vector<int> q(m, -1);
    int q1, q2;
    long long y = 1;
    for(int i=0; ; ++i){
        if(q[y] != -1){
            q1 = q[y];
            q2 = i - q[y];
            break;
        }
        q[y] = i;

        long long y2 = 1;
        for(int j=0; j<y; ++j){
            y2 *= a;
            if(y2 > p1){
                y2 -= p1;
                y2 %= p2;
                y2 += p1;
            }
        }
        y = y2;
    }

    -- n;
    if(n > q1){
        n -= q1;
        n %= q2;
        n += q1;
    }
    long long z = 1;
    for(int i=0; i<n; ++i){
        long long z2 = 1;
        for(int j=0; j<z; ++j){
            z2 *= a;
            if(z2 > p1){
                z2 -= p1;
                z2 %= p2;
                z2 += p1;
            }
        }
        z = z2;
    }

    long long ans = 1;
    for(int j=0; j<z; ++j){
        ans *= a;
        ans %= m;
    }
    cout << ans << endl;

    return 0;
}
0