結果
問題 | No.1383 Numbers of Product |
ユーザー | umezo |
提出日時 | 2021-02-07 22:59:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 208,144 KB |
実行使用メモリ | 131,072 KB |
最終ジャッジ日時 | 2024-07-04 17:36:42 |
合計ジャッジ時間 | 40,073 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 23 ms
5,376 KB |
testcase_02 | AC | 21 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 27 ms
5,376 KB |
testcase_07 | AC | 1,046 ms
105,856 KB |
testcase_08 | WA | - |
testcase_09 | AC | 647 ms
114,560 KB |
testcase_10 | AC | 1,431 ms
130,304 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 27 ms
5,376 KB |
testcase_18 | AC | 27 ms
5,376 KB |
testcase_19 | AC | 26 ms
5,376 KB |
testcase_20 | AC | 26 ms
5,376 KB |
testcase_21 | AC | 26 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 27 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 27 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 479 ms
67,072 KB |
testcase_29 | AC | 1,177 ms
115,840 KB |
testcase_30 | AC | 1,420 ms
131,072 KB |
testcase_31 | AC | 383 ms
66,048 KB |
testcase_32 | AC | 505 ms
79,488 KB |
testcase_33 | WA | - |
testcase_34 | AC | 410 ms
66,048 KB |
testcase_35 | AC | 704 ms
125,312 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 1,438 ms
130,944 KB |
testcase_39 | AC | 741 ms
130,944 KB |
testcase_40 | AC | 743 ms
130,944 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 761 ms
130,944 KB |
testcase_45 | WA | - |
testcase_46 | AC | 25 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; double g(ll x){ if(n<1e6) return false; double l=0; double r=1e18; 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; } return r; } double t; bool f(ll x){ if(n<t) return false; double l=1e6; double r=t; 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]++; } } t=g(n); 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,(ll)t-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; }