結果
問題 | No.181 A↑↑N mod M |
ユーザー | tottoripaper |
提出日時 | 2015-04-06 00:49:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 23,680 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 02:59:40 |
合計ジャッジ時間 | 1,276 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 0 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 0 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 0 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 0 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 0 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 1 ms
5,376 KB |
testcase_40 | AC | 1 ms
5,376 KB |
testcase_41 | WA | - |
testcase_42 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:57:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | scanf("%lld %lld %lld", &A, &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// Wrongri-La Shower #include <cstdio> typedef long long ll; int phi[2001]; ll A, N, M; int expt(int a, int n){ int res = 1; while(n > 0){ if(n & 1){res *= a;} a *= a; n >>= 1; } return res; } ll mod_pow(ll a, ll n, ll m){ ll res = 1ll; while(n > 0ll){ if(n & 1ll){res = res * a % m;} a = a * a % m; n >>= 1; } return res; } ll tower(ll a, ll n, ll m){ // printf("%lld, %lld, %lld\n", A, N, M); if(n == 0ll){return 1ll;} if(m == 1ll){return 0ll;} return mod_pow(a, tower(a, n-1, phi[m]), m); } int main(){ phi[1] = 1; for(int i=2;i<=2000;i++){ phi[i] = 1; int x = i; for(int j=2;j*j<=x;j++){ int count = 0; while(x % j == 0){ x /= j; count += 1; } if(count == 0){continue;} phi[i] *= expt(j, count) - expt(j, count-1); } if(x > 1){phi[i] *= x - 1;} } scanf("%lld %lld %lld", &A, &N, &M); printf("%lld\n", tower(A, N, M)); }