結果

問題 No.181 A↑↑N mod M
ユーザー btkbtk
提出日時 2015-07-06 11:30:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-07-08 01:17:41
合計ジャッジ時間 8,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
24,576 KB
testcase_01 AC 123 ms
24,488 KB
testcase_02 AC 118 ms
24,576 KB
testcase_03 AC 119 ms
24,448 KB
testcase_04 AC 123 ms
24,360 KB
testcase_05 AC 131 ms
24,576 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 119 ms
24,484 KB
testcase_10 WA -
testcase_11 AC 124 ms
24,360 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 122 ms
24,576 KB
testcase_19 AC 120 ms
24,360 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 128 ms
24,612 KB
testcase_23 WA -
testcase_24 AC 125 ms
24,704 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 126 ms
24,488 KB
testcase_28 WA -
testcase_29 AC 123 ms
24,576 KB
testcase_30 AC 124 ms
24,576 KB
testcase_31 WA -
testcase_32 AC 125 ms
24,704 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 123 ms
24,576 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from pip._vendor.distlib.compat import raw_input

A, N, M=map(int,raw_input().split())
memo={1:0}
res={0:1}
p=1
while  pow(A,p,M) not in memo:
    tmp=pow(A,p,M)
    memo[tmp]=memo[p]+1
    res[memo[tmp]]=tmp
    p=tmp
d=memo[p]+1-memo[pow(A,p,M)]
s=memo[pow(A,p,M)]
if s>=N:
    print(res[N])
else :
    print(res[((N-s)%d+s)])

0