結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー tko919tko919
提出日時 2024-12-18 08:53:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 141,392 KB
最終ジャッジ日時 2024-12-18 08:55:13
合計ジャッジ時間 126,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
130,356 KB
testcase_01 AC 32 ms
60,592 KB
testcase_02 AC 32 ms
131,384 KB
testcase_03 WA -
testcase_04 AC 34 ms
130,884 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 90 ms
70,768 KB
testcase_10 AC 400 ms
75,868 KB
testcase_11 AC 1,773 ms
77,272 KB
testcase_12 AC 375 ms
76,220 KB
testcase_13 AC 552 ms
77,428 KB
testcase_14 AC 5,563 ms
79,560 KB
testcase_15 AC 2,782 ms
77,828 KB
testcase_16 AC 3,517 ms
77,860 KB
testcase_17 AC 3,284 ms
77,508 KB
testcase_18 AC 5,038 ms
78,152 KB
testcase_19 AC 5,267 ms
78,060 KB
testcase_20 AC 5,216 ms
78,880 KB
testcase_21 AC 6,004 ms
78,864 KB
testcase_22 AC 5,204 ms
78,356 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

for _ in range(T):
    B,N,M=map(int,input().split())
    n=30
    print((pow(M,B**n,B**(n+N))-1)//(B**n))
0