結果
問題 | No.1666 累乗数 |
ユーザー | publfl |
提出日時 | 2021-09-03 21:50:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,162 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 60,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-09 03:15:50 |
合計ジャッジ時間 | 11,695 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 1,094 ms
5,376 KB |
testcase_02 | AC | 1,686 ms
5,376 KB |
testcase_03 | AC | 1,955 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <stdio.h> #include <vector> #include <map> #define MAX (long long int)1e18 int check[110]; std::vector<int> prime; std::map<long long int, long long int> M; long long int func(int k, int mul,long long int val) { if(mul>60) return 0; if(k==prime.size()) { if(mul==1) return 0; long long int min = 1, max = val; long long int p = 1; while(min<=max) { long long int h = (min+max)/2; long long int t = val; for(int i=1;i<=mul;i++) t/=h; if(t==0) max = h-1; else { p = h; min = h+1; } } return p-1; } long long int s1 = func(k+1,mul,val); long long int s2 = func(k+1,mul*prime[k],val); return s1-s2; } int main() { for(int i=2;i<=60;i++) { if(check[i]==0) { prime.push_back(i); for(int j=i;j<=60;j+=i) check[j] = 1; } } int T; scanf("%d",&T); while(T--) { int a; scanf("%d",&a); long long int min = 1, max = MAX; long long int ans = MAX; while(min<=max) { long long int h = (min+max)/2; if(M.find(h)==M.end()) M[h] = -func(0,1,h)+1; long long int s = M[h]; if(s>=a) { ans = h; max = h-1; } else min = h+1; } printf("%lld\n",ans); } }