#include<iostream>
using namespace std;
long long c,d,b,m,nr,s;
long long f[30000];
int main(){
cin>>c>>d>>b>>m;
long long x=3;
long long suma;
while(1==1){
nr=c*x+d;
suma=0;
while(nr){
suma+=nr%b;
nr/=b;
}
f[suma]++;
if(f[suma]==m){
s=suma;
break;
}
x+=b-1;
}
x=3;
while(1==1){
nr=c*x+d;
suma=0;
while(nr){
suma+=nr%b;
nr/=b;
}
if(suma==s){
m--;
cout<<x<<" ";
}
x+=b-1;
if(m==0)
break;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
376 KB |
Output is correct |
2 |
Correct |
98 ms |
3064 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
69 ms |
2424 KB |
Output is correct |
2 |
Correct |
67 ms |
2428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
70 ms |
2464 KB |
Output is correct |
2 |
Correct |
69 ms |
2552 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
83 ms |
2680 KB |
Output is correct |
2 |
Correct |
74 ms |
2680 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
91 ms |
2680 KB |
Output is correct |
2 |
Correct |
223 ms |
2216 KB |
Output is correct |
3 |
Correct |
98 ms |
2668 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
86 ms |
2772 KB |
Output is correct |
2 |
Correct |
85 ms |
2880 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
70 ms |
376 KB |
Output is correct |
2 |
Correct |
806 ms |
1096 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1825 ms |
2024 KB |
Output is correct |
2 |
Correct |
1202 ms |
2168 KB |
Output is correct |
3 |
Execution timed out |
2051 ms |
2168 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
162 ms |
2224 KB |
Output is correct |
2 |
Correct |
994 ms |
2244 KB |
Output is correct |
3 |
Correct |
95 ms |
2808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
85 ms |
2824 KB |
Output is correct |
2 |
Correct |
88 ms |
2168 KB |
Output is correct |