답안 #239062

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
239062 2020-06-14T09:35:16 Z VEGAnn Kotrljanje (COCI18_kotrljanje) C++14
42 / 140
574 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<int> 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 Correct 418 ms 55140 KB Output is correct
2 Runtime error 515 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# 결과 실행 시간 메모리 Grader output
1 Runtime error 535 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 544 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 574 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 511 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 530 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 21 ms 1280 KB Output is correct
2 Correct 187 ms 4692 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 426 ms 8768 KB Output is correct
2 Correct 266 ms 9816 KB Output is correct
3 Correct 488 ms 9628 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 276 ms 21596 KB Output is correct
2 Correct 236 ms 7864 KB Output is correct
3 Correct 412 ms 40600 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 568 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -