結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-09 15:11:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 82,024 KB
最終ジャッジ日時 2024-12-17 23:40:58
合計ジャッジ時間 76,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,772 KB
testcase_01 AC 34 ms
52,408 KB
testcase_02 AC 36 ms
52,548 KB
testcase_03 AC 36 ms
53,016 KB
testcase_04 AC 37 ms
53,444 KB
testcase_05 AC 42 ms
54,388 KB
testcase_06 AC 168 ms
77,708 KB
testcase_07 AC 54 ms
66,660 KB
testcase_08 AC 50 ms
62,788 KB
testcase_09 AC 52 ms
65,200 KB
testcase_10 AC 1,089 ms
77,384 KB
testcase_11 AC 2,004 ms
78,428 KB
testcase_12 AC 430 ms
76,888 KB
testcase_13 AC 502 ms
78,192 KB
testcase_14 AC 2,594 ms
80,208 KB
testcase_15 AC 1,951 ms
79,080 KB
testcase_16 AC 2,277 ms
78,204 KB
testcase_17 AC 1,981 ms
78,796 KB
testcase_18 AC 2,573 ms
78,024 KB
testcase_19 AC 2,273 ms
78,096 KB
testcase_20 AC 2,169 ms
78,340 KB
testcase_21 AC 2,591 ms
78,196 KB
testcase_22 AC 2,377 ms
78,232 KB
testcase_23 AC 7,249 ms
80,200 KB
testcase_24 AC 7,250 ms
80,164 KB
testcase_25 AC 7,301 ms
79,696 KB
testcase_26 AC 7,775 ms
82,024 KB
testcase_27 AC 8,017 ms
80,772 KB
testcase_28 AC 7,202 ms
80,552 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#誤解法(n=2max(N,1)+6に限定する愚直冪乗)チェック
I=input
for t in[0]*int(I()):
	B,N,M=map(int,I().split())
	D=B**N
	E=B**(2*max(N,1)+6)
	P=pow(M,E,E*D)-1
	a=P//E
	print(-1if(P-a*E)%(E*D)else a%D)
0