結果

問題 No.181 A↑↑N mod M
ユーザー vwxyzvwxyz
提出日時 2024-05-03 16:04:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,508 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 56,252 KB
最終ジャッジ日時 2024-05-03 16:04:11
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,492 KB
testcase_01 AC 42 ms
55,228 KB
testcase_02 AC 41 ms
55,472 KB
testcase_03 AC 36 ms
54,880 KB
testcase_04 AC 38 ms
54,180 KB
testcase_05 AC 36 ms
54,856 KB
testcase_06 AC 37 ms
54,428 KB
testcase_07 WA -
testcase_08 AC 37 ms
55,004 KB
testcase_09 AC 40 ms
54,260 KB
testcase_10 AC 40 ms
54,616 KB
testcase_11 AC 41 ms
54,900 KB
testcase_12 AC 38 ms
54,712 KB
testcase_13 AC 36 ms
54,296 KB
testcase_14 AC 37 ms
54,708 KB
testcase_15 AC 36 ms
55,108 KB
testcase_16 WA -
testcase_17 AC 36 ms
54,324 KB
testcase_18 AC 35 ms
55,816 KB
testcase_19 AC 36 ms
54,496 KB
testcase_20 AC 36 ms
55,104 KB
testcase_21 AC 44 ms
55,056 KB
testcase_22 AC 37 ms
54,384 KB
testcase_23 WA -
testcase_24 AC 36 ms
55,624 KB
testcase_25 AC 36 ms
54,444 KB
testcase_26 AC 36 ms
54,492 KB
testcase_27 AC 36 ms
53,732 KB
testcase_28 AC 37 ms
53,808 KB
testcase_29 AC 38 ms
54,644 KB
testcase_30 AC 39 ms
55,788 KB
testcase_31 AC 40 ms
55,856 KB
testcase_32 AC 40 ms
55,852 KB
testcase_33 AC 42 ms
54,820 KB
testcase_34 AC 36 ms
54,620 KB
testcase_35 AC 35 ms
55,748 KB
testcase_36 AC 37 ms
54,060 KB
testcase_37 AC 38 ms
55,772 KB
testcase_38 AC 36 ms
54,464 KB
testcase_39 AC 35 ms
54,540 KB
testcase_40 AC 36 ms
54,180 KB
testcase_41 AC 36 ms
54,308 KB
testcase_42 AC 35 ms
54,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict
import math

def LCM(n,m):
    if n or m:
        return abs(n)*abs(m)//math.gcd(n,m)
    return 0

def Permutation_Product(x,n,f):
    lst=[]
    dct={}
    idx=0
    cur=x
    while True:
        if cur in dct.keys():
            loop_begin=dct[cur]
            loop_end=idx
            break
        else:
            lst.append(cur)
            dct[cur]=idx
            cur=f(cur)
            idx+=1
    if loop_end-1>=n:
        return lst[n]
    n-=loop_begin
    loop_length=loop_end-loop_begin
    lst=lst[loop_begin:]
    return lst[n%(loop_length)]

def Totient(N,mod):
    retu=N
    primes=list(Factorize(mod).keys())
    l=len(primes)
    dp_popcount=[0]*(1<<l)
    dp_count=[N]*(1<<l)
    for bit in range(1,1<<l):
        i=(bit&-bit).bit_length()-1
        dp_popcount[bit]=dp_popcount[bit^1<<i]+1
        dp_count[bit]=dp_count[bit^1<<i]//primes[i]
        if dp_popcount[bit]%2==0:
            retu+=dp_count[bit]
        else:
            retu-=dp_count[bit]
    return retu

def Factorize(N):
    assert N>=1
    factors=defaultdict(int)
    for p in range(2,N):
        if p**2>N:
            break
        while N%p==0:
            factors[p]+=1
            N//=p
    if N!=1:
        factors[N]+=1
    return factors

A,N,M=map(int,readline().split())
mod=1
MM=M
while MM>=2:
    mod=LCM(mod,MM)
    for p in Factorize(MM):
        MM=MM*(p-1)//p
ans=Permutation_Product(1,N,lambda x:pow(A,x,mod))%M
print(ans)
0