結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | kenjiiiH |
提出日時 | 2016-05-14 17:38:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 789 ms |
コンパイル使用メモリ | 70,660 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-06 02:42:27 |
合計ジャッジ時間 | 4,462 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,640 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
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 <iostream> #include <vector> #include <map> using namespace std; vector<long long> getPrimes(int n) { vector<bool> ok(n, true); ok[0] = ok[1]= false; vector<long long> ret; for (int i = 2; i < n; i++) { if (!ok[i]) continue; ret.push_back(i); for (int j = i; j < n; j += i) ok[j] = false; } return ret; } long long fac(long long x) { for (long long d = 2; d * d <= x; d++) { if (x % d == 0) return d; } return x; } int main(int argc, char *argv[]) { long long l, h; cin >> l >> h; pair<long long, long long> ret = make_pair(0, 0); vector<long long> ps = getPrimes(100); for (int i = ps.size()-1; i >= 0; i--) { if (ps[i] < ret.first) break; long long x = h / ps[i] * ps[i]; while (l <= x) { long long d = min(ps[i], fac(x/ps[i])); ret = max(ret, make_pair(d, x)); x -= ps[i]; } } cout << ret.second << endl; return 0; }