結果

問題 No.981 一般冪乗根
ユーザー 37zigen37zigen
提出日時 2020-02-10 19:40:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 417 ms / 6,000 ms
コード長 3,194 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 81,256 KB
実行使用メモリ 143,268 KB
最終ジャッジ日時 2024-04-18 05:33:53
合計ジャッジ時間 97,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
112,912 KB
testcase_01 AC 346 ms
66,752 KB
testcase_02 AC 350 ms
143,268 KB
testcase_03 AC 355 ms
58,312 KB
testcase_04 AC 348 ms
67,096 KB
testcase_05 AC 336 ms
65,264 KB
testcase_06 AC 342 ms
58,692 KB
testcase_07 AC 338 ms
57,820 KB
testcase_08 AC 340 ms
58,244 KB
testcase_09 AC 341 ms
57,828 KB
testcase_10 AC 345 ms
58,096 KB
testcase_11 AC 337 ms
58,012 KB
testcase_12 AC 338 ms
58,176 KB
testcase_13 AC 351 ms
58,280 KB
testcase_14 AC 343 ms
58,196 KB
testcase_15 AC 339 ms
58,120 KB
testcase_16 AC 327 ms
58,224 KB
testcase_17 AC 349 ms
58,180 KB
testcase_18 AC 336 ms
58,004 KB
testcase_19 AC 339 ms
58,432 KB
testcase_20 AC 339 ms
58,220 KB
testcase_21 AC 338 ms
58,060 KB
testcase_22 AC 325 ms
58,256 KB
testcase_23 AC 343 ms
58,164 KB
testcase_24 AC 334 ms
58,124 KB
testcase_25 AC 378 ms
60,460 KB
testcase_26 AC 355 ms
58,648 KB
testcase_27 AC 324 ms
58,548 KB
testcase_28 AC 417 ms
58,664 KB
evil_60bit1.txt AC 517 ms
60,836 KB
evil_60bit2.txt AC 543 ms
60,632 KB
evil_60bit3.txt AC 542 ms
61,500 KB
evil_hack AC 144 ms
54,412 KB
evil_hard_random AC 531 ms
60,888 KB
evil_hard_safeprime.txt AC 661 ms
63,444 KB
evil_hard_tonelli0 TLE -
evil_hard_tonelli1 TLE -
evil_hard_tonelli2 AC 1,514 ms
63,124 KB
evil_hard_tonelli3 TLE -
evil_sefeprime1.txt AC 643 ms
61,324 KB
evil_sefeprime2.txt AC 661 ms
60,956 KB
evil_sefeprime3.txt AC 652 ms
61,204 KB
evil_tonelli1.txt TLE -
evil_tonelli2.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		int T = sc.nextInt();
		for (int i = 0; i < T; ++i) {
			long p = sc.nextLong();
			long k = sc.nextLong();
			long a = sc.nextLong();
			long kthroot = kth_root(a, k, p);
			System.out.println(kthroot);
//			pw.println(kthroot);
		}
		pw.close();
	}

	long kth_root(long a, long k, long p) {
		long g = gcd(k, p - 1);
		if (pow(a, (p - 1) / g, p) != 1)
			return -1;
		a = pow(a, inv(k / g, (p - 1) / g), p);
		for (long div = 2; div * div <= g; ++div) {
			int sz = 0;
			while (g % div == 0) {
				g /= div;
				++sz;
			}
			if (sz > 0) {
				long b = peth_root(a, div, sz, p);
				a = b;
			}
		}
		if (g > 1)
			a = peth_root(a, g, 1, p);
		return a;
	}

	long peth_root(long a, long p, int e, long mod) {
		long q = mod - 1;
		int s = 0;
		while (q % p == 0) {
			q /= p;
			++s;
		}
		long pe = pow(p, e, mod);
		long ans = pow(a, (mul((pe - 1) , inv(q, pe) , pe) * q + 1) / pe, mod);
		long c = 2;
		while (pow(c, (mod - 1) / p, mod) == 1)
			++c;
		c = pow(c, q, mod);
		HashMap<Long, Integer> map = new HashMap<>();
		long add = 1;
		int v = (int) Math.sqrt((double)(s-e)*p) + 1;
		long mul = pow(c, mul(v, pow(p, s - 1, mod - 1),mod-1), mod);
		for (int i = 0; i <= v; ++i) {
			map.put(add, i);
			add = mul(add , mul , mod);
		}
		mul = inv(pow(c, pow(p, s - 1, mod - 1), mod), mod);
		out: for (int i = e; i < s; ++i) {
			long err = mul(inv(pow(ans, pe, mod), mod) , a , mod);
			long target = pow(err, pow(p, s - 1 - i, mod - 1), mod);
			for (int j = 0; j <= v; ++j) {
				if (map.containsKey(target)) {
					int x = map.get(target);
					ans = mul(ans , pow(c, mul((j + v * x) , pow(p, i - e, mod - 1) , (mod - 1)), mod) , mod);
					continue out;
				}
				target = mul(target , mul , mod);
			}
			throw new AssertionError();
		}
		return ans;
	}

	int cnt(long a, long base, long p) {
		int ret = 0;
		while (a != 1) {
			a = pow(a, base, p);
			++ret;
		}
		return ret;
	}

	long inv(long a, long p) {
		a %= p;
		long u = 1, v = 0;
		long b = p;
		while (b > 0) {
			long q = a / b;
			a %= b;
			u -=mul(v , q , p);
			u = (u%p+p)%p;
			{
				u ^= v;
				v ^= u;
				u ^= v;
				a ^= b;
				b ^= a;
				a ^= b;
			}
		}
		return u < 0 ? u + p : u;
	}

	long pow(long a, long n, long p) {
		n %= p - 1;
		long r = 1;
		for (; n > 0; n >>= 1, a = mul(a , a , p))
			if (n % 2 == 1)
				r = mul(r , a, p);
		return r;
	}

	long gcd(long a, long b) {
		return a == 0 ? b : gcd(b % a, a);
	}
	
	long mul(long a,long b,long p) {
		return BigInteger.valueOf(a).multiply(BigInteger.valueOf(b)).mod(BigInteger.valueOf(p)).longValue();
//		if(a<0||b<0)throw new AssertionError();
//		if(a>b)return mul(b,a,p);
//		else if(a==0)return 0;
//		else if(a==1)return b;
//		else if(a%2==0)return mul(a/2,b*2%p,p)%p;
//		else return (b+mul(a-1,b,p))%p;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0