結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | どらら |
提出日時 | 2016-05-14 01:53:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,525 bytes |
コンパイル時間 | 889 ms |
コンパイル使用メモリ | 82,492 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-10-05 21:29:33 |
合計ジャッジ時間 | 3,704 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 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
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 100 ms
5,248 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | AC | 45 ms
5,248 KB |
testcase_30 | TLE | - |
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 | -- | - |
ソースコード
#include <algorithm> #include <cstdio> #include <cstdlib> #include <cctype> #include <cmath> #include <iostream> #include <queue> #include <list> #include <stack> #include <map> #include <numeric> #include <set> #include <sstream> #include <string> #include <vector> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; #define MAX_PRIME 105000 bool isprime[MAX_PRIME+1]; vector<int> primes; void init_prime(){ fill(isprime, isprime+MAX_PRIME+1, true); isprime[0] = isprime[1] = false; for(int i = 2; i <= MAX_PRIME; i++) { if (isprime[i]) { primes.push_back(i); for(int j = i*2; j <= MAX_PRIME; j += i) isprime[j] = false; } } } ll findmin(ll x){ ll d, q; while(x>=4 && x%2==0){ return 2; x/=2;} d = 3; q = x/d; while(q>=d){ if(x%d==0){ return d; x=q; }else{ d+=2; } q=x/d; } return x; } int main(){ ios::sync_with_stdio(false); init_prime(); ll L, H; cin >> L >> H; for(int i=primes.size()-1; i>=0; i--){ ll p = primes[i]; if(H<p) continue; ll q = H/p; ll ret = -1; for(ll j=q+1; j>=1; j--){ if(p*j<L) break; if(L<=p*j && p*j<=H){ ll res = findmin(p*j); if(res == p){ ret = max(ret, p*j); } } } if(ret > 0){ cout << ret << endl; break; } } return 0; }