結果

問題 No.181 A↑↑N mod M
ユーザー bt yamatobt yamato
提出日時 2021-11-03 21:28:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 164,876 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 14:20:12
合計ジャッジ時間 3,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

ll mpow(ll x, ll p, ll mod)
{
    ll res = 1;
    while( p > 0 )
    {
        if(p&1) res *= x;
        x = x*x%mod;
        res %= mod;
        p >>= 1;
    }
    return res;
}

int main(){
    ll a,n,m;
    cin>>a>>n>>m;
    vector<ll> A(m+1,1);
    int cyc = 0, offset = 0;
    for(int i = 0; i < m; i++)
    {
        A[i+1] = mpow(a, A[i], m);
        std::cerr << i << " " << A[i+1] <<endl;
        for(int j = 0; j < i + 1; j++)
            if( A[i+1] == A[j] )
            {
                cyc = i+1 - j;
                offset = j;
                goto last;
            }

    }
    last:
    cout << A[n >= offset ? (offset + (n-offset)%cyc):n] << endl;
}
0