結果
問題 | No.1383 Numbers of Product |
ユーザー | umezo |
提出日時 | 2021-02-07 22:52:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 2,315 ms |
コンパイル使用メモリ | 207,828 KB |
実行使用メモリ | 131,072 KB |
最終ジャッジ日時 | 2024-07-04 17:02:02 |
合計ジャッジ時間 | 35,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
5,248 KB |
testcase_01 | AC | 20 ms
5,376 KB |
testcase_02 | AC | 20 ms
5,376 KB |
testcase_03 | AC | 25 ms
5,376 KB |
testcase_04 | AC | 24 ms
5,376 KB |
testcase_05 | AC | 25 ms
5,376 KB |
testcase_06 | AC | 24 ms
5,376 KB |
testcase_07 | AC | 861 ms
105,728 KB |
testcase_08 | WA | - |
testcase_09 | AC | 612 ms
114,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 24 ms
5,376 KB |
testcase_18 | AC | 24 ms
5,376 KB |
testcase_19 | AC | 25 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 24 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 24 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 25 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 492 ms
67,072 KB |
testcase_29 | AC | 972 ms
115,968 KB |
testcase_30 | AC | 1,147 ms
130,816 KB |
testcase_31 | AC | 380 ms
66,048 KB |
testcase_32 | AC | 545 ms
79,616 KB |
testcase_33 | WA | - |
testcase_34 | AC | 396 ms
66,176 KB |
testcase_35 | AC | 683 ms
125,184 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 734 ms
130,944 KB |
testcase_40 | AC | 729 ms
131,072 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 739 ms
130,944 KB |
testcase_45 | WA | - |
testcase_46 | AC | 24 ms
5,376 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; const double EPS=1e-9; ll n,k,m; bool f(ll x){ if(n<1e6) return false; double l=1e6; double r=n; rep(i,50){ double a=(l+r)/2; if(a*a+k*a-x>EPS) r=a; else if(a*a+k*a-x<-EPS) l=a; } if(abs(r-round(r))<EPS) return true; else return false; } int main(){ cin>>n>>k>>m; map<ll,ll> M; for(ll a=1;a<1000000;a++){ ll tmp=a; for(ll b=1;;b++){ if(log(tmp)+log(a+b*k)>log(n)) break; tmp*=a+b*k; M[tmp]++; } } ll ans=0; if(m>=2){ for(auto x:M){ if(x.second==m && f(x.first)==false) ans++; if(x.second==m-1 && f(x.first)==true) ans++; } } if(m==1){ ans+=max(0LL,n-1000000LL); for(auto x:M){ if(f(x.first)==true) ans--; if(x.second==m && f(x.first)==false) ans++; } } cout<<ans<<endl; return 0; }