Submission details
Task:Finding inverse
Sender:usvafe
Submission time:2025-11-16 20:07:15 +0200
Language:C++ (C++17)
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#2ACCEPTED0.00 sdetails
#3ACCEPTED0.00 sdetails
#4ACCEPTED0.00 sdetails
#5ACCEPTED0.00 sdetails
#6ACCEPTED0.00 sdetails
#7ACCEPTED0.00 sdetails
#8ACCEPTED0.00 sdetails
#9ACCEPTED0.00 sdetails
#10ACCEPTED0.00 sdetails
#11ACCEPTED0.00 sdetails
#12ACCEPTED0.00 sdetails
#13ACCEPTED0.00 sdetails
#14ACCEPTED0.00 sdetails

Code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

map<ll, ll> f;


ll modpow(ll a, ll b, ll M) {
	if (b == 0) return 1;
	ll t = modpow(a, b/2, M);
	t = (t * t) % M;
	if (b%2==1) t = (t * a) % M;
	return t;
}

ll gcd(ll a, ll b) {
	if (b == 0) return a;
	return gcd(b, a%b);
}

ll totient(ll M) {
	ll tot = 1;
	for (auto [p, a] : f) {
		tot = (tot * modpow(p, a-1, M)) % M; 
		tot = (tot * (p-1)) % M;
	}
	return tot;
}

int main() {
	ll x, M;
	cin >> x >> M;
	ll g = gcd(x, M);
	if (g != 1) {
		cout << -1 << endl;
		return 0;
	}
	ll y = M;
	for (ll k=2; k*k <= y; k++) {
		while (y%k == 0) {
			f[k]++;
			y /= k;
		}
	}
	if (y > 1) f[y]++; 
	ll tot = totient(M-1);
	ll inv = modpow(x, (tot+M-2)%(M-1), M);
	cout << inv << endl;
	return 0;
	
}

Test details

Test 1

Verdict: ACCEPTED

input
6 7

correct output
6

user output
6

Test 2

Verdict: ACCEPTED

input
0 7

correct output
-1

user output
-1

Test 3

Verdict: ACCEPTED

input
5 78

correct output
47

user output
47

Test 4

Verdict: ACCEPTED

input
89 99

correct output
89

user output
89

Test 5

Verdict: ACCEPTED

input
0 61

correct output
-1

user output
-1

Test 6

Verdict: ACCEPTED

input
897 947

correct output
625

user output
625

Test 7

Verdict: ACCEPTED

input
419 538

correct output
217

user output
217

Test 8

Verdict: ACCEPTED

input
32 938

correct output
-1

user output
-1

Test 9

Verdict: ACCEPTED

input
184120 505187

correct output
438779

user output
438779

Test 10

Verdict: ACCEPTED

input
264601 885661

correct output
360221

user output
360221

Test 11

Verdict: ACCEPTED

input
40310 590135

correct output
-1

user output
-1

Test 12

Verdict: ACCEPTED

input
202254499 577081420

correct output
128866679

user output
128866679

Test 13

Verdict: ACCEPTED

input
539836073 888851205

correct output
797044652

user output
797044652

Test 14

Verdict: ACCEPTED

input
697847215 756971670

correct output
-1

user output
-1