結果
問題 | No.1666 累乗数 |
ユーザー | publfl |
提出日時 | 2021-09-03 21:48:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 519 ms |
コンパイル使用メモリ | 49,024 KB |
実行使用メモリ | 16,592 KB |
最終ジャッジ日時 | 2024-12-15 12:02:39 |
合計ジャッジ時間 | 58,895 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 284 ms
13,636 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 <stdio.h> #include <vector> #define MAX (long long int)1e18 int check[110]; std::vector<int> prime; 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; long long int s = -func(0,1,h)+1; if(s>=a) { ans = h; max = h-1; } else min = h+1; } printf("%lld\n",ans); } }