結果
問題 | No.1666 累乗数 |
ユーザー | ktr216 |
提出日時 | 2021-09-03 22:46:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,199 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 179,656 KB |
実行使用メモリ | 1,636,056 KB |
最終ジャッジ日時 | 2024-12-15 15:56:56 |
合計ジャッジ時間 | 46,971 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 385 ms
63,748 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
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 > 0 || i > 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] << " "; }