結果

問題 No.181 A↑↑N mod M
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-09 18:37:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 443 ms / 5,000 ms
コード長 913 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 79,128 KB
最終ジャッジ日時 2024-05-03 05:52:57
合計ジャッジ時間 19,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
78,472 KB
testcase_01 AC 410 ms
78,528 KB
testcase_02 AC 421 ms
78,504 KB
testcase_03 AC 424 ms
78,832 KB
testcase_04 AC 423 ms
78,368 KB
testcase_05 AC 431 ms
78,732 KB
testcase_06 AC 415 ms
78,644 KB
testcase_07 AC 421 ms
78,728 KB
testcase_08 AC 412 ms
78,612 KB
testcase_09 AC 411 ms
78,476 KB
testcase_10 AC 413 ms
78,600 KB
testcase_11 AC 417 ms
79,128 KB
testcase_12 AC 420 ms
78,484 KB
testcase_13 AC 418 ms
78,508 KB
testcase_14 AC 416 ms
78,476 KB
testcase_15 AC 414 ms
78,856 KB
testcase_16 AC 422 ms
79,112 KB
testcase_17 AC 414 ms
78,476 KB
testcase_18 AC 419 ms
78,480 KB
testcase_19 AC 419 ms
79,124 KB
testcase_20 AC 422 ms
78,524 KB
testcase_21 AC 415 ms
78,480 KB
testcase_22 AC 409 ms
78,756 KB
testcase_23 AC 417 ms
78,384 KB
testcase_24 AC 411 ms
78,976 KB
testcase_25 AC 421 ms
78,488 KB
testcase_26 AC 414 ms
78,660 KB
testcase_27 AC 416 ms
78,604 KB
testcase_28 AC 416 ms
78,500 KB
testcase_29 AC 412 ms
78,476 KB
testcase_30 AC 416 ms
78,612 KB
testcase_31 AC 416 ms
79,016 KB
testcase_32 AC 411 ms
78,988 KB
testcase_33 AC 410 ms
78,496 KB
testcase_34 AC 408 ms
78,484 KB
testcase_35 AC 420 ms
79,004 KB
testcase_36 AC 415 ms
79,112 KB
testcase_37 AC 423 ms
78,468 KB
testcase_38 AC 411 ms
78,620 KB
testcase_39 AC 443 ms
78,892 KB
testcase_40 AC 417 ms
79,008 KB
testcase_41 AC 437 ms
78,612 KB
testcase_42 AC 433 ms
78,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(i,j):
    if j<i:
        return gcd(j,i)
    if j%i==0:
        return i
    else:
        return gcd(j%i,i)

def getint(i):
    ret=0
    for j in range(i-1,0,-1):
        if gcd(j,i)==1:
            ret+=1   
    return ret
interval=[getint(i) for i in range(0,2001)]

def getExpWithUpperBound(A,N,M):
    if N==0:
        return min(1,M)
    if N==1:
        return min(A,M)
    if N==2 and A<=16:
        return min(pow(A,A),M)
    if N==3 and A<=3:
        return min(pow(A,pow(A,A)),M)
    if N==4 and A<=2:
        return min(pow(A,pow(A,pow(A,A))),M)
    else:
        return M

def hypermod(A,N,M):
    #print A,N,M
    if M==1:
        return 0
    if N==0:
        return 1
    e=getExpWithUpperBound(A,N-1,M)
    if e<M:
        return pow(A,e,M)
    else:
        return pow(A,M+((hypermod(A,N-1,interval[M])-M)%interval[M]),M)
    

A,N,M=map(int,raw_input().split())
print hypermod(A,N,M)
0