結果
問題 | No.181 A↑↑N mod M |
ユーザー | bt yamato |
提出日時 | 2021-11-03 21:48:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 1,641 ms |
コンパイル使用メモリ | 168,820 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 13:22:52 |
合計ジャッジ時間 | 2,729 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
#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(2*m+1,1); cerr << 0 << " " << 1 << endl; int cyc = 0, offset = 0; for(int i = 0; i < m+1; i++) { A[i+1] = mpow(a, A[i], m); std::cerr << i+1 << " " << 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; } } cout << A[n] <<endl; return 0; last: cout << A[n >= offset ? (offset + (n-offset)%cyc):n] << endl; }