답안 #239061

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
239061 2020-06-14T09:34:40 Z VEGAnn Kotrljanje (COCI18_kotrljanje) C++14
28 / 140
492 ms 65540 KB
#include <bits/stdc++.h>
//#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")
#define i2 array<int,2>
#define PB push_back
#define all(x) x.begin(),x.end()
#define sz(x) ((int)x.size())
using namespace std;
typedef long long ll;
const int N = 20100;
const ll OO = 1e18;
const int oo = 2e9;
const int md = int(1e9) + 7;
vector<ll> sms[N];
ll C, D, B, M;

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0);

#ifdef _LOCAL
    freopen("in.txt","r",stdin);
#endif // _LOCAL

    cin >> C >> D >> B >> M;

    for (ll i = 1; ; i++){
        ll cur = i * C + D;

        ll sum = 0;

        while (cur > 0){
            sum += cur % B;
            cur /= B;
        }

        sms[sum].PB(i);

        if (sz(sms[sum]) == M){
            for (ll x : sms[sum])
                cout << x << " ";
            return 0;
        }
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 290 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 292 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 297 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 294 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 276 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 293 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 20 ms 1664 KB Output is correct
2 Correct 198 ms 7480 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 428 ms 15168 KB Output is correct
2 Correct 275 ms 17068 KB Output is correct
3 Correct 492 ms 16768 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 300 ms 40288 KB Output is correct
2 Correct 241 ms 12988 KB Output is correct
3 Runtime error 382 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# 결과 실행 시간 메모리 Grader output
1 Runtime error 296 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -