125272024-12-21 15:08:40KissCsongor777Sorozat generáláscpp17Wrong answer 29/50190ms1044 KiB
#include <bits/stdc++.h>
#include <cmath>
#include <algorithm>

using namespace std;

int main()
{
    int m,x,a,b,n,k;
    long long p,q,r;
    cin>>m>>x>>a>>b>>n>>k;
    p=pow(10,4*m-1);q=pow(10,2*m);r=pow(10,m);
    vector<int>h;
    h.push_back(x);
    vector<int>::iterator c;
    bool van=false;
    for(int i=1; i<=n-1; i++)
    {
        x=a*x+b;
        if(x<p)x=p+x;
        x=x/r;
        x=x%q;

        c=find(h.begin(),h.end(),x);
        if(c!=h.end() && !van ){cout<<i-distance(h.begin(),c)<<endl; van=true;}
        h.push_back(x);
    }
    sort(h.begin(),h.end());
    reverse(h.begin(),h.end());
    cout<<h[k-1];

    return 0;
}
SubtaskSumTestVerdictTimeMemory
base29/50
1Accepted0/01ms512 KiB
2Wrong answer0/039ms948 KiB
3Partially correct1/21ms320 KiB
4Accepted2/21ms320 KiB
5Accepted2/21ms356 KiB
6Accepted2/21ms320 KiB
7Accepted2/21ms320 KiB
8Accepted4/43ms320 KiB
9Accepted4/46ms568 KiB
10Accepted4/417ms824 KiB
11Accepted4/413ms692 KiB
12Accepted4/418ms1044 KiB
13Wrong answer0/450ms908 KiB
14Wrong answer0/4158ms848 KiB
15Wrong answer0/4190ms852 KiB
16Wrong answer0/437ms1040 KiB
17Wrong answer0/450ms948 KiB