# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
144195 | 2019-08-16T09:54:00 Z | AldeaDanut | Kotrljanje (COCI18_kotrljanje) | C++14 | 1094 ms | 9924 KB |
#include <iostream> #include <vector> using namespace std; long long n,c,d,b,m,x,i,sum,sol; int f[30000]; vector <int> v[30000]; int main(){ cin>>c>>d>>b>>m; if(m<500){ x=3; while(true){ n=c*x+d; sum=0; while(n){ sum+=n%b; n/=b; } f[sum]++; if(f[sum]==m){ sol=sum; break; } x+=b-1; } x=3; while(m){ n=c*x+d; sum=0; while(n){ sum+=n%b; n/=b; } if(sum==sol){ cout<<x<<" "; m--; } x+=b-1; } }else{ x=3; while(true){ n=c*x+d; sum=0; while(n){ sum+=n%b; n/=b; } v[sum].push_back(x); if(v[sum].size()==m){ sol=sum; break; } x+=b-1; } for(i=0;i<m;i++) cout<<v[sol][i]<<" "; } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 1144 KB | Output is correct |
2 | Incorrect | 80 ms | 5776 KB | Expected unsigned integer, but "-2147481657" found |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 57 ms | 4396 KB | Output is correct |
2 | Correct | 54 ms | 4460 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 58 ms | 4808 KB | Output is correct |
2 | Correct | 59 ms | 4588 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 68 ms | 4980 KB | Output is correct |
2 | Correct | 60 ms | 4840 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 74 ms | 5420 KB | Output is correct |
2 | Correct | 141 ms | 5732 KB | Output is correct |
3 | Correct | 76 ms | 5100 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 82 ms | 5088 KB | Output is correct |
2 | Correct | 70 ms | 5344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 39 ms | 1400 KB | Output is correct |
2 | Correct | 434 ms | 4776 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 972 ms | 9260 KB | Output is correct |
2 | Correct | 739 ms | 9924 KB | Output is correct |
3 | Correct | 1094 ms | 9816 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 112 ms | 5588 KB | Output is correct |
2 | Correct | 549 ms | 8672 KB | Output is correct |
3 | Correct | 74 ms | 5480 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 62 ms | 4968 KB | Output is correct |
2 | Correct | 69 ms | 4556 KB | Output is correct |