結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー KudeKude
提出日時 2024-12-18 09:32:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 77,852 KB
最終ジャッジ日時 2024-12-18 09:33:00
合計ジャッジ時間 11,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,744 KB
testcase_01 AC 34 ms
52,740 KB
testcase_02 AC 33 ms
52,184 KB
testcase_03 AC 33 ms
52,208 KB
testcase_04 AC 33 ms
52,528 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
53,820 KB
testcase_09 AC 39 ms
54,000 KB
testcase_10 AC 439 ms
77,236 KB
testcase_11 AC 430 ms
77,376 KB
testcase_12 AC 334 ms
77,152 KB
testcase_13 AC 371 ms
77,160 KB
testcase_14 AC 432 ms
77,852 KB
testcase_15 AC 392 ms
77,436 KB
testcase_16 WA -
testcase_17 AC 386 ms
77,116 KB
testcase_18 AC 430 ms
76,620 KB
testcase_19 AC 365 ms
77,072 KB
testcase_20 AC 400 ms
77,216 KB
testcase_21 AC 398 ms
76,944 KB
testcase_22 AC 417 ms
77,120 KB
testcase_23 AC 458 ms
77,220 KB
testcase_24 AC 482 ms
77,504 KB
testcase_25 AC 440 ms
77,444 KB
testcase_26 AC 467 ms
77,388 KB
testcase_27 AC 499 ms
77,588 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(b, n, m):
    if pow(m, b, b) != 1:
        return -1
    if n == 0:
        return 0
    b2n = b ** (2 * n)
    mbn = m
    for _ in range(n):
        mbn = pow(mbn, b, b2n)
    a = mbn // (b ** n)
    return a

for _ in range(int(input())):
    b, n, m = map(int, input().split())
    print(solve(b, n, m))
0