結果
| 問題 |
No.3127 Multiple of Twin Prime
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2025-04-25 22:41:45 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 174 ms / 2,500 ms |
| コード長 | 1,066 bytes |
| コンパイル時間 | 998 ms |
| コンパイル使用メモリ | 80,872 KB |
| 実行使用メモリ | 43,004 KB |
| 最終ジャッジ日時 | 2025-04-25 22:41:50 |
| 合計ジャッジ時間 | 4,384 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 12 |
ソースコード
#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <map>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(i64 i=0; i<i64(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
void testcase(){
i64 Z = 10000000;
vector<int> sieve(Z+1, 1);
sieve[0] = sieve[1] = 0;
for(i64 p=2; p*p<=Z; p++) if(sieve[p]) for(i64 q=p*p; q<=Z; q+=p) sieve[q] = 0;
vector<i64> T;
rep(i,Z-1) if(sieve[i] && sieve[i+2]) T.push_back(i * (i+2));
i64 Q; cin >> Q;
rep(t,Q){
i64 N; cin >> N;
i64 p = upper_bound(T.begin(), T.end(), N) - T.begin();
if(p == 0){
cout << "-1\n";
} else {
cout << T[p-1] << "\n";
}
}
}
int main(){
ios::sync_with_stdio(false); cin.tie(nullptr);
testcase();
return 0;
}
Nachia