結果
問題 | No.181 A↑↑N mod M |
ユーザー | test |
提出日時 | 2015-11-24 21:07:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,399 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 17:20:55 |
合計ジャッジ時間 | 1,402 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 0 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 0 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 0 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 0 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
6,944 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 1 ms
6,940 KB |
testcase_35 | WA | - |
testcase_36 | AC | 1 ms
6,940 KB |
testcase_37 | WA | - |
testcase_38 | AC | 1 ms
6,944 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:65:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 65 | scanf("%d %d %d", &A, &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int const MAX = 2010; int _pow(int A, int N, int M){ if(0 >= N){ return 1; } if(0 >= A){ return 0; } if(1 >= M){ return 0; } int b = _pow(A, N / 2, M); b = (b * b) % M; if(0 == N % 2){ return b; } return (b * A) % M; } void GetK0D(int A, int M, int &k0, int &d){ static int memo[MAX]; int r = 1, i = 0, j = 0; for(i = 1; i <= M; ++i){ memo[i-1] = r; r *= A; r %= M; for(j = 0; j < i; ++j){ if(r == memo[j]){ k0 = j; d = i - j; return; } } } k0 = -1; d = -1; } bool Flag(int A, int N, int k0){ if(5 <= A){ return true; } if(4 == A){ if(2 == N){ return k0 < 4 * 4 * 4 * 4; } return true; }else if(3 == A){ if(2 == N){ return k0 < 3 * 3 * 3; } return true; }else{ if(2 == N){ return k0 < 2 * 2; } if(3 == N){ return k0 < 2 * 2 * 2 * 2; } return true; } return false; } int Arrow(int const A, int N, int const M){ int B = A % M; if(0 >= N){ return 1; } if(1 == N){ return B; } if(1 >= M){ return 0; } if(0 >= B){ return 0; } if(1 == B){ return 1; } int k0, d; GetK0D(B, M, k0, d); if(-1 == k0){ return 0; } if(Flag(A, N - 1, k0)){ int b = Arrow(A, N - 1, d); b = ((b - k0) % d + d) % d; return _pow(B, k0 + b, M); } return _pow(B, Arrow(A, N - 1, M), M); } int main(int argc, char *argv[]){ int A, N, M; scanf("%d %d %d", &A, &N, &M); printf("%d\n", Arrow(A % M, N, M)); return 0; }