結果

問題 No.2993 冪乗乗 mod 冪乗
ユーザー 👑 p-adicp-adic
提出日時 2023-11-09 13:32:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 81,452 KB
最終ジャッジ日時 2024-12-17 23:38:51
合計ジャッジ時間 73,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,620 KB
testcase_01 AC 36 ms
53,756 KB
testcase_02 AC 37 ms
52,692 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 36 ms
51,828 KB
testcase_05 AC 44 ms
54,868 KB
testcase_06 AC 162 ms
78,208 KB
testcase_07 AC 52 ms
66,264 KB
testcase_08 AC 50 ms
62,580 KB
testcase_09 AC 51 ms
65,220 KB
testcase_10 AC 1,087 ms
77,472 KB
testcase_11 AC 2,025 ms
78,336 KB
testcase_12 AC 425 ms
77,544 KB
testcase_13 AC 499 ms
77,832 KB
testcase_14 AC 2,593 ms
80,160 KB
testcase_15 AC 1,963 ms
78,952 KB
testcase_16 AC 2,313 ms
78,120 KB
testcase_17 AC 1,995 ms
78,724 KB
testcase_18 AC 2,579 ms
78,044 KB
testcase_19 AC 2,301 ms
78,152 KB
testcase_20 AC 2,158 ms
78,204 KB
testcase_21 AC 2,593 ms
78,036 KB
testcase_22 AC 2,386 ms
77,948 KB
testcase_23 AC 7,312 ms
80,388 KB
testcase_24 AC 7,289 ms
80,584 KB
testcase_25 AC 7,354 ms
79,884 KB
testcase_26 AC 7,860 ms
81,452 KB
testcase_27 AC 8,050 ms
81,056 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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