結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
12,220 KB
testcase_01 WA -
testcase_02 AC 18 ms
12,304 KB
testcase_03 AC 18 ms
12,232 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 20 ms
12,164 KB
testcase_08 AC 20 ms
12,284 KB
testcase_09 AC 19 ms
12,240 KB
testcase_10 AC 20 ms
12,376 KB
testcase_11 AC 20 ms
12,256 KB
testcase_12 AC 18 ms
12,180 KB
testcase_13 WA -
testcase_14 AC 19 ms
12,200 KB
testcase_15 AC 18 ms
12,220 KB
testcase_16 AC 20 ms
12,264 KB
testcase_17 AC 20 ms
12,204 KB
testcase_18 AC 20 ms
12,284 KB
testcase_19 AC 20 ms
12,308 KB
testcase_20 AC 20 ms
12,352 KB
testcase_21 AC 20 ms
12,252 KB
testcase_22 AC 21 ms
12,256 KB
testcase_23 AC 20 ms
12,252 KB
testcase_24 AC 22 ms
12,296 KB
testcase_25 AC 22 ms
12,132 KB
testcase_26 AC 20 ms
12,256 KB
testcase_27 AC 20 ms
12,260 KB
testcase_28 AC 20 ms
12,272 KB
testcase_29 AC 21 ms
12,316 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 23 ms
12,292 KB
testcase_42 AC 20 ms
12,136 KB
testcase_43 AC 19 ms
12,248 KB
testcase_44 AC 20 ms
12,248 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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; 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