結果
問題 | No.1666 累乗数 |
ユーザー | otoshigo |
提出日時 | 2021-09-14 06:12:40 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,493 bytes |
コンパイル時間 | 2,303 ms |
コンパイル使用メモリ | 202,244 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 09:10:10 |
合計ジャッジ時間 | 9,828 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
5,248 KB |
testcase_01 | AC | 337 ms
5,376 KB |
testcase_02 | AC | 340 ms
5,376 KB |
testcase_03 | AC | 341 ms
5,376 KB |
testcase_04 | AC | 344 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
//#define _GLIBCXX_DEBUG #include <bits/stdc++.h> #include <iostream> #include <algorithm> using namespace std; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vb = vector<bool>; using vvb = vector<vb>; using vpi = vector<pii>; using vvpi = vector<vpi>; using vpl = vector<pll>; using vvpl = vector<vpl>; const int inf = 1 << 30; const ll INF = 1LL << 60; #define rep(i,m,n) for (int i = m; i < (int)(n); i++) #define rrep(i,m,n) for (int i = m; i > (int)(n); i--) ll cnt_i(ll x,int i){ ll y = floor(pow(x,1/double(i))); rrep(j,y+2,y-2){ if (pow(j,i) < 0) cout << "HUHUHU" << endl; if (pow(j,i) <= x) { return j; } } return 0; } bool f(ll x,ll k){ //x以下の累乗数の個数がk個以下か ll ju = 0; vl cnt(61); rrep(i,60,1){ // ju += (x以下のi乗数の個数) ll c = cnt_i(x,i); for (int j = 2*i; j <= 60; j += i){ c -= cnt[j]; } cnt[i] = c; ju += c; } //cout << ju << " " << k << endl; if (ju <= k) return true; else return false; } void solve(){ ll k; cin >> k; ll ok = 0,ng = 1e18+1; while (ng-ok > 1){ ll mid = (ok+ng)/2; if (f(mid,k)) ok = mid; else ng = mid; } cout << ok+1 << endl; } int main(){ int t; cin >> t; rep(i,0,t){ solve(); } }