結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー bal4ubal4u
提出日時 2019-04-16 06:19:16
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 2,702 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 32,124 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-10-22 06:56:13
合計ジャッジ時間 4,445 ms
ジャッジサーバーID
(参考情報)
judge9 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,696 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 1 ms
4,348 KB
testcase_13 AC 1 ms
4,348 KB
testcase_14 AC 1 ms
4,348 KB
testcase_15 AC 5 ms
4,348 KB
testcase_16 AC 1 ms
4,348 KB
testcase_17 AC 1 ms
4,348 KB
testcase_18 AC 1 ms
4,348 KB
testcase_19 AC 1 ms
4,348 KB
testcase_20 AC 194 ms
4,348 KB
testcase_21 AC 1 ms
4,348 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder: No.371 ぼく悪いプライムじゃないよ
// 2019.4.16 bal4u
// sqrt(n)*sqrt(n) = n なら、sqrt(n)は最大の素因数?

#include <stdio.h>
#include <math.h>

//// 素数テスト
long long calc_pow(int a, int k, int n)
{
	long long   p;
	unsigned bit;

	p = 1;
	for (bit = 0x80000000U; bit > 0; bit >>= 1) {
		if (p > 1) p = (p*p) % n;
		if (k & bit) p = (p*a) % n;
	}
	return p % n;
}

int suspect(int b, unsigned n)
{
	unsigned i;
	unsigned t, u, n1;
	long long x0, x1;

	u = n1 = n - 1;
	t = 0;
	while ((u & 1) == 0) {
		t++;
		u >>= 1;
	}
	x0 = calc_pow(b, u, n);
	for (i = 1; i <= t; i++) {
		x1 = (x0*x0) % n;
		if (x1 == 1 && x0 != 1 && x0 != n1) return 0;
		x0 = x1;
	}
	return x1 == 1;
}

int isprime(int n)
{
	if (n == 1) return 0;          /* 1 */
	if (n == 2 || n == 3) return 1;          /* 2, 3 */
	if ((n & 1) == 0) return 0;  /* other even integers */
	if (!suspect(2, n)) return 0;
	if (n <= 1000000) {
		if (!suspect(3, n)) return 0;
	}
	else {
		if (!suspect(7, n)) return 0;
		if (!suspect(61, n)) return 0;
	}
	return 1;
}

//// 最小素因数の取得
int ptbl[] = {
		 3,   5,   7,  11,  13,  17,  19,  23,  29,
   31,  37,  41,  43,  47,  53,  59,  61,  67,  71,
   73,  79,  83,  89,  97, 101, 103, 107, 109, 113,
  127, 131, 137, 139, 149, 151, 157, 163, 167, 173,
  179, 181, 191, 193, 197, 199, 211, 223, 227, 229,
  233, 239, 241, 251, 257, 263, 269, 271, 277, 281,
  283, 293, 307, 311, 313, 317, 331, 337, 347, 349,
  353, 359, 367, 373, 379, 383, 389, 397, 401, 409,
  419, 421, 431, 433, 439, 443, 449, 457, 461, 463,
  467, 479, 487, 491, 499, 503, 509, 521, 523, 541,
  547, 557, 563, 569, 571, 577, 587, 593, 599, 601,
  607, 613, 617, 619, 631, 641, 643, 647, 653, 659,
  661, 673, 677, 683, 691, 701, 709, 719, 727, 733,
  739, 743, 751, 757, 761, 769, 773, 787, 797, 809,
  811, 821, 823, 827, 829, 839, 853, 857, 859, 863,
  877, 881, 883, 887, 907, 911, 919, 929, 937, 941,
  947, 953, 967, 971, 977, 983, 991, 997, 0 };

int minFactor(long long n)
{
	int i, b;
	int *pp;

	for (pp = ptbl; *pp < n && *pp > 0; pp++) {
		if (n % *pp == 0) return *pp;
	}
	b = (int)sqrt((double)n);
	for (i = 1009; i <= b; i += 2) {
		if (n % i == 0) return i;
	}
	return 0;
}

int main()
{
	int x, t;
	long long i, L, H, ans;

	scanf("%lld%lld", &L, &H);
	ans = 0;
	x = (int)sqrt((double)H);
	if (isprime(x)) {
		ans = x * x;
		if (ans < L) ans = 0;
		else for (i = H; i > ans; i--) {
			if (i % x == 0 && isprime((int)(i / x))) { ans = i; break; }
		}
	}
	if (ans == 0) {
		if ((H & 1) == 0) ans = H, H--; else ans = H - 1;
		x = 0; for (i = H; i >= L; i -= 2) {
			if ((t = minFactor(i)) > x) x = t, ans = i;
		}
	}
	printf("%lld\n", ans);
	return 0;
}
0