結果

問題 No.181 A↑↑N mod M
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-09 18:36:09
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 78,852 KB
最終ジャッジ日時 2024-07-05 21:18:12
合計ジャッジ時間 22,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 456 ms
78,368 KB
testcase_01 AC 464 ms
78,496 KB
testcase_02 AC 462 ms
78,584 KB
testcase_03 AC 466 ms
78,720 KB
testcase_04 AC 457 ms
78,588 KB
testcase_05 AC 469 ms
78,572 KB
testcase_06 AC 458 ms
78,768 KB
testcase_07 AC 468 ms
78,592 KB
testcase_08 AC 456 ms
78,612 KB
testcase_09 AC 465 ms
78,256 KB
testcase_10 AC 456 ms
78,224 KB
testcase_11 AC 468 ms
78,616 KB
testcase_12 AC 458 ms
78,396 KB
testcase_13 AC 469 ms
78,336 KB
testcase_14 AC 457 ms
78,348 KB
testcase_15 AC 464 ms
78,464 KB
testcase_16 AC 459 ms
78,492 KB
testcase_17 AC 467 ms
78,848 KB
testcase_18 AC 458 ms
78,852 KB
testcase_19 AC 470 ms
78,732 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 454 ms
78,496 KB
testcase_23 AC 471 ms
78,464 KB
testcase_24 AC 459 ms
78,460 KB
testcase_25 AC 468 ms
78,208 KB
testcase_26 AC 462 ms
78,780 KB
testcase_27 AC 467 ms
78,208 KB
testcase_28 AC 457 ms
78,840 KB
testcase_29 AC 465 ms
78,240 KB
testcase_30 AC 457 ms
78,840 KB
testcase_31 AC 468 ms
78,736 KB
testcase_32 AC 457 ms
78,484 KB
testcase_33 AC 486 ms
78,772 KB
testcase_34 AC 456 ms
78,720 KB
testcase_35 AC 465 ms
78,464 KB
testcase_36 AC 454 ms
78,236 KB
testcase_37 AC 467 ms
78,720 KB
testcase_38 AC 457 ms
78,732 KB
testcase_39 AC 467 ms
78,592 KB
testcase_40 AC 456 ms
78,748 KB
testcase_41 AC 467 ms
78,848 KB
testcase_42 AC 458 ms
78,844 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 N==0:
        return 1
    if M==1:
        return 0
    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