結果
問題 |
No.3127 Multiple of Twin Prime
|
ユーザー |
![]() |
提出日時 | 2025-04-25 21:39:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 145 ms / 2,500 ms |
コード長 | 1,188 bytes |
コンパイル時間 | 1,362 ms |
コンパイル使用メモリ | 105,352 KB |
実行使用メモリ | 14,580 KB |
最終ジャッジ日時 | 2025-04-25 21:40:10 |
合計ジャッジ時間 | 4,124 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 |
ソースコード
#include <iostream> #include <iomanip>//小数点出力用 //cout << fixed << setprecision(10) << ans; #include <cmath> #include <algorithm> #include <vector> #include <queue> #include <stack> #include <set> #include <map> using ll = long long; using namespace std; #define modPHash (ll)((1LL<<61)-1) #define modP (ll)998244353 bool chkrng0idx(int pos, int sup) { return (0 <= pos && pos < sup); } int clk4(int num) { return (num - 2) * (num % 2); } void yn(bool tf) { cout << (tf ? "Yes\n" : "No\n"); } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int T;cin >> T; bool notPrime[11000000] = { 0 }; notPrime[0] = 1; notPrime[1] = 1; vector<ll>ans; ans.push_back(-1); for (int i = 2;i < 11000000;i++) { if (notPrime[i] == 0) { for (int j = 2 * i;j < 11000000;j+=i) { notPrime[j] = 1; } if (notPrime[i - 2] == 0) { ans.push_back((ll)(i - 2) * (ll)i); } } } while (T--) { ll N; cin >> N; auto itr = upper_bound(ans.begin(), ans.end(), N); itr--; cout << (*itr) << "\n"; } return 0; }