結果
問題 | No.1666 累乗数 |
ユーザー | kotatsugame |
提出日時 | 2021-09-03 22:04:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 920 ms / 2,000 ms |
コード長 | 1,005 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 78,024 KB |
実行使用メモリ | 25,120 KB |
最終ジャッジ日時 | 2024-12-15 13:34:40 |
合計ジャッジ時間 | 21,073 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 891 ms
23,852 KB |
testcase_01 | AC | 909 ms
23,964 KB |
testcase_02 | AC | 907 ms
24,020 KB |
testcase_03 | AC | 908 ms
23,876 KB |
testcase_04 | AC | 912 ms
23,668 KB |
testcase_05 | AC | 917 ms
24,024 KB |
testcase_06 | AC | 915 ms
24,196 KB |
testcase_07 | AC | 914 ms
25,120 KB |
testcase_08 | AC | 916 ms
24,916 KB |
testcase_09 | AC | 910 ms
24,472 KB |
testcase_10 | AC | 908 ms
23,552 KB |
testcase_11 | AC | 908 ms
23,884 KB |
testcase_12 | AC | 907 ms
23,884 KB |
testcase_13 | AC | 918 ms
24,772 KB |
testcase_14 | AC | 920 ms
24,344 KB |
testcase_15 | AC | 917 ms
25,120 KB |
testcase_16 | AC | 916 ms
24,140 KB |
testcase_17 | AC | 914 ms
24,180 KB |
testcase_18 | AC | 917 ms
23,724 KB |
testcase_19 | AC | 912 ms
24,916 KB |
コンパイルメッセージ
main.cpp:37:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 37 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; long sq(long N,long k) { if(k>=30)return 1; long L=0,R=N+1; while(R-L>1) { long mid=(L+R)/2; long t=1; bool ok=true; for(int i=0;i<k;i++) { if(t>N/mid) { ok=false; break; } t*=mid; } if(ok)L=mid; else R=mid; } return L; } vector<long>S,Sq; long cnt(long N) { long ans=0; ans+=upper_bound(Sq.begin(),Sq.end(),N)-Sq.begin(); long now=sq(N,2); ans+=now; return ans; } main() { const long LIM=1e18; for(long a=2;;a++) { bool ch=false; long t=a*a; if(t>LIM/a)break; while(t<=LIM/a) { t*=a; S.push_back(t); } } sort(S.begin(),S.end()); S.erase(unique(S.begin(),S.end()),S.end()); for(long t:S) { long now=sq(t,2); if(now*now!=t)Sq.push_back(t); } int T; //cout<<cnt(4)<<endl; //return 0; cin>>T; for(;T--;) { long K;cin>>K; long L=0,R=1e18; while(R-L>1) { long mid=(L+R)/2; if(cnt(mid)<K)L=mid; else R=mid; } cout<<R<<endl; } }