結果

問題 No.1140 EXPotentiaLLL!
ユーザー first_vilfirst_vil
提出日時 2020-07-31 22:08:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 139,572 KB
最終ジャッジ日時 2024-07-06 18:21:30
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
139,572 KB
testcase_01 AC 506 ms
139,384 KB
testcase_02 AC 759 ms
139,016 KB
testcase_03 AC 475 ms
139,424 KB
testcase_04 AC 446 ms
139,088 KB
testcase_05 AC 511 ms
139,108 KB
testcase_06 AC 503 ms
138,996 KB
testcase_07 AC 796 ms
139,088 KB
testcase_08 AC 244 ms
138,148 KB
testcase_09 AC 247 ms
138,080 KB
testcase_10 AC 301 ms
139,124 KB
testcase_11 AC 304 ms
139,416 KB
testcase_12 AC 260 ms
137,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    p=[True]*5000001
    p[0]=p[1]=False
    i=2
    ps=[]
    while i<5000000:
        if p[i]:
            ps.append(i)
            j=i<<1
            while j<=5000000:
                p[j]=False
                j+=i
        i+=1
    
    for _ in range(int(input())):
        a,b=map(int,input().split())
        if p[b]:
            print(pow(a%b,b-1,b))
        else:
            print(-1)
if __name__=='__main__':
    main()
0