結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | Pachicobue |
提出日時 | 2017-10-23 22:42:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,301 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 173,236 KB |
実行使用メモリ | 39,844 KB |
最終ジャッジ日時 | 2024-11-21 15:47:41 |
合計ジャッジ時間 | 9,335 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
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 | AC | 5 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 157 ms
6,816 KB |
testcase_21 | AC | 163 ms
6,816 KB |
testcase_22 | AC | 126 ms
6,816 KB |
testcase_23 | AC | 129 ms
6,816 KB |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | AC | 3 ms
6,816 KB |
testcase_30 | AC | 3 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | AC | 3 ms
6,816 KB |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 4 ms
6,820 KB |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | AC | 15 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 3 ms
6,816 KB |
testcase_39 | AC | 3 ms
6,816 KB |
testcase_40 | AC | 3 ms
6,816 KB |
testcase_41 | AC | 3 ms
6,820 KB |
testcase_42 | AC | 4 ms
6,820 KB |
testcase_43 | TLE | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
#include <bits/stdc++.h> #define show(x) cerr << #x << " = " << x << endl using namespace std; using ll = long long; using pii = pair<int, int>; using vi = vector<int>; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz=" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = (ll)1e9 + 7; constexpr ll MAX = 10000000000LL; constexpr ll SQRT = 100000LL; bool isprime[SQRT + 1]; template <typename T> constexpr T INF = numeric_limits<T>::max() / 100; int main() { cin.tie(0); ios::sync_with_stdio(false); fill(isprime, isprime + SQRT + 1, true); for (ll i = 2; i <= SQRT; i++) { if (isprime[i]) { for (ll j = 2; i * j <= SQRT; j++) { isprime[i * j] = false; } } } vector<ll> prime; for (ll i = 2; i <= SQRT; i++) { if (isprime[i]) { prime.push_back(i); } } isprime[1] = true; ll L, H; cin >> L >> H; if (H - L < 1000) { ll maxi = SQRT; ll maxnum = 0; for (ll i = L; i <= H; i++) { for (const ll p : prime) { if (i % p == 0 and (not(i <= SQRT and isprime[i]))) { if (maxi <= p) { maxi = p; maxnum = i; break; } } } } cout << maxnum << endl; return 0; } reverse(prime.begin(), prime.end()); vector<ll> cand(1, 1LL); for (const ll p : prime) { vector<ll> tmp = cand; ll maxi = -1; for (const ll e : cand) { ll num = e; while (num * p <= H) { num *= p; if (num >= L and (not(num <= SQRT and isprime[num]))) { maxi = max(maxi, num); } tmp.push_back(num); } } if (maxi != -1) { cout << maxi << endl; return 0; } cand = tmp; } return 0; }