結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー tko919tko919
提出日時 2024-12-18 08:47:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 154,908 KB
最終ジャッジ日時 2024-12-18 08:50:29
合計ジャッジ時間 205,007 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
130,596 KB
testcase_01 AC 34 ms
59,884 KB
testcase_02 AC 35 ms
129,940 KB
testcase_03 WA -
testcase_04 AC 37 ms
132,140 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 513 ms
147,672 KB
testcase_10 AC 2,776 ms
152,628 KB
testcase_11 AC 7,435 ms
154,752 KB
testcase_12 AC 2,738 ms
152,772 KB
testcase_13 AC 7,240 ms
154,824 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
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=100
    print((pow(M,B**n,B**(n+N))-1)//(B**n))
0