結果

問題 No.1287 えぬけー
ユーザー ygd.ygd.
提出日時 2020-11-14 20:15:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 77,420 KB
最終ジャッジ日時 2024-07-23 00:48:47
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,372 KB
testcase_01 AC 35 ms
52,612 KB
testcase_02 AC 35 ms
52,776 KB
testcase_03 AC 36 ms
52,080 KB
testcase_04 AC 38 ms
52,276 KB
testcase_05 AC 472 ms
77,152 KB
testcase_06 AC 472 ms
77,204 KB
testcase_07 AC 491 ms
77,420 KB
testcase_08 AC 448 ms
77,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Ext_gcd(a,b): #GCD,p,qを返す。
    if b == 0:
        return (a,1,0)
    g,y,x = Ext_gcd(b,a%b)
    y -= a//b*x
    return (g,x,y)

p = pow(10,9)+7
T = int(input())
for _ in range(T):
    X,K = map(int,input().split())
    g,x,y = Ext_gcd(1-p,K)
    y %= p-1
    ans = pow(X,y,p)
    print(ans)
0