답안 #239291

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
239291 2020-06-15T09:14:13 Z Vimmer Kotrljanje (COCI18_kotrljanje) C++14
126 / 140
483 ms 21388 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>

#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 F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define N 101001
#define M ll(1e9 + 7)
#define inf 1e9 + 1e9

using namespace std;
//using namespace __gnu_pbds;

typedef long double ld;
typedef long long ll;
typedef short int si;
typedef array <int, 3> a3;

//typedef tree <int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;




unordered_map <int, vector <int> > koler;

int main()
{
    //freopen("input.txt", "r", stdin); //freopen("output4.txt", "w", stdout);

    ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    ll c, b, d, m;

    cin >> c >> d >> b >> m;

    ll dob = 1;

    if (b >= 50) dob = b - 1;

    for (ll i = 1; ; i += dob)
    {
        ll val = i * c + d;

        ll sum = 0;

        while (val > 0)
        {
            sum += val % b;

            val /= b;
        }

        koler[sum].pb(i);

        if (sz(koler[sum]) == m)
        {
            for (auto it : koler[sum]) cout << it << " ";

            exit(0);
        }
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 384 KB Output is correct
2 Incorrect 53 ms 5088 KB Expected unsigned integer, but "-2147481659" found
# 결과 실행 시간 메모리 Grader output
1 Correct 51 ms 4196 KB Output is correct
2 Correct 42 ms 3808 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 46 ms 4320 KB Output is correct
2 Correct 46 ms 4320 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 42 ms 4196 KB Output is correct
2 Correct 48 ms 4192 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 4452 KB Output is correct
2 Correct 191 ms 11172 KB Output is correct
3 Correct 50 ms 4712 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 45 ms 4584 KB Output is correct
2 Correct 50 ms 4832 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 768 KB Output is correct
2 Correct 191 ms 4292 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 426 ms 8484 KB Output is correct
2 Correct 276 ms 9208 KB Output is correct
3 Correct 483 ms 9436 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 316 ms 21388 KB Output is correct
2 Correct 237 ms 7292 KB Output is correct
3 Correct 49 ms 4460 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 45 ms 4592 KB Output is correct
2 Correct 47 ms 3936 KB Output is correct