結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー 👑 NachiaNachia
提出日時 2020-09-27 20:52:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 167,500 KB
実行使用メモリ 12,388 KB
最終ジャッジ日時 2024-06-30 12:54:43
合計ジャッジ時間 3,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
12,228 KB
testcase_01 AC 18 ms
12,320 KB
testcase_02 AC 19 ms
12,132 KB
testcase_03 AC 17 ms
12,084 KB
testcase_04 AC 16 ms
12,292 KB
testcase_05 AC 19 ms
12,220 KB
testcase_06 AC 18 ms
12,220 KB
testcase_07 AC 18 ms
12,208 KB
testcase_08 AC 18 ms
12,260 KB
testcase_09 AC 16 ms
12,196 KB
testcase_10 AC 16 ms
12,280 KB
testcase_11 AC 18 ms
12,264 KB
testcase_12 AC 15 ms
12,232 KB
testcase_13 AC 16 ms
12,168 KB
testcase_14 AC 18 ms
12,292 KB
testcase_15 AC 17 ms
12,268 KB
testcase_16 AC 17 ms
12,384 KB
testcase_17 AC 16 ms
12,248 KB
testcase_18 AC 17 ms
12,232 KB
testcase_19 AC 17 ms
12,252 KB
testcase_20 AC 19 ms
12,308 KB
testcase_21 AC 20 ms
12,192 KB
testcase_22 AC 18 ms
12,248 KB
testcase_23 AC 19 ms
12,244 KB
testcase_24 AC 20 ms
12,320 KB
testcase_25 AC 20 ms
12,136 KB
testcase_26 AC 19 ms
12,388 KB
testcase_27 AC 20 ms
12,248 KB
testcase_28 AC 16 ms
12,152 KB
testcase_29 AC 17 ms
12,196 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 21 ms
12,108 KB
testcase_42 AC 18 ms
12,332 KB
testcase_43 AC 19 ms
12,208 KB
testcase_44 AC 17 ms
12,268 KB
testcase_45 AC 17 ms
12,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

const ULL Z = 1000000;
bool sieve[Z + 1];
ULL bull[Z + 1]; ULL offset;

int main() {
	ULL L, R; cin >> L >> R;
	offset = max(Z, R) - Z;
	rep(i, Z + 1) bull[i] = i;

	sieve[0] = sieve[1] = true;
	for (ULL i = 2; i < Z; i++) {
		if (sieve[i]) continue;
		if (i <= 1000) for (ULL j = i * i; j < Z; j += i) sieve[j] = true;
		for (ULL j = i - (offset + i - 1) % i - 1; j <= Z; j += i) bull[j] = min(bull[j], i);
	}

	ULL ans = 0, val = 0;
	for (ULL i = max(offset, L) - offset; i <= R - offset; i++)
		if (bull[i] != i) if (val <= bull[i]) {
			val = bull[i]; ans = offset + i;
		}
	cout << ans << endl;

	return 0;
}
0