結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー はむこはむこ
提出日時 2017-02-08 11:05:50
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 165,504 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-25 16:28:33
合計ジャッジ時間 31,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(long long i = 0; i < (long long)(n); i++)
using ll = long long; using vll = vector<ll>; 

int main(void) {
    ll l, h; cin >> l >> h;
    vll primes; 
    vector<bool> is_prime(1e5+10, 1); 
    is_prime[0] = is_prime[1] = 0;
    for (ll p = 2; p < is_prime.size(); p++) if (is_prime[p]) {
        primes.push_back(p);
        for (ll x = p; x < is_prime.size(); x += p) 
            is_prime[x] = 0;
    }
    reverse(primes.begin(), primes.end());

    rep(pi, primes.size()) {
        ll p = primes[pi];
        for (ll x = h / p * p; x >= l; x -= p) 
            if (all_of(primes.begin() + pi + 1, primes.end(), [&](ll y){return x % y;})) {
            // xがp以下の素数を持たない
                cout << x << endl;
                return 0;
            }
    }

    return 0;
}
0