結果
問題 | No.1666 累乗数 |
ユーザー | ktr216 |
提出日時 | 2021-09-03 22:49:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,206 bytes |
コンパイル時間 | 2,099 ms |
コンパイル使用メモリ | 180,672 KB |
実行使用メモリ | 88,376 KB |
最終ジャッジ日時 | 2024-12-15 16:07:43 |
合計ジャッジ時間 | 60,923 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 384 ms
67,056 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, l, r) for (int i = (l); i < (r); i++) using namespace std; typedef long long ll; int main() { set<ll> st; rep(i, 2, 1000001) { //cout << i << endl; for (ll j = 1LL * i * i; j <= 1e18 / i; j *= i) { ll x = j * i, y = sqrt(x); if (x != y * y) st.insert(x); } } //cout << st.size() << endl; //for (ll i : st) cout << i << " "; vector<ll> vc(0); for (ll i : st) vc.push_back(i); sort(vc.begin(), vc.end()); int T; cin >> T; while (T-- > 0) { ll K; cin >> K; priority_queue<ll> ans = {}; for (ll i = K; i > max(0LL, (ll)(K - vc.size())); i--) { ans.push(i * i); //cout << i * i << ":"; //cout << ans.size() << endl; } //cout << ans.size() << endl; for (ll i : vc) { ans.push(i); ans.pop(); } cout << ans.top() << endl; /* cout << ans.size() << endl; while (!ans.empty()) { cout << ans.top() << ";"; ans.pop(); } */ } //rep(i, 0, 100) cout << vc[vc.size() - 1 - i] << " "; }