125212024-12-21 14:55:18KissCsongor777Sorozat generáláscpp17Wrong answer 29/50133ms1060 KiB
#include <bits/stdc++.h>
#include <cmath>
#include <algorithm>

using namespace std;

int main()
{
    int m,x,a,b,n,k,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/01ms320 KiB
2Wrong answer0/0133ms948 KiB
3Partially correct1/21ms320 KiB
4Accepted2/22ms320 KiB
5Accepted2/21ms320 KiB
6Accepted2/21ms320 KiB
7Accepted2/21ms320 KiB
8Accepted4/43ms320 KiB
9Accepted4/46ms580 KiB
10Accepted4/417ms784 KiB
11Accepted4/412ms692 KiB
12Accepted4/417ms1060 KiB
13Wrong answer0/419ms948 KiB
14Wrong answer0/490ms944 KiB
15Wrong answer0/494ms904 KiB
16Wrong answer0/4104ms1012 KiB
17Wrong answer0/467ms1020 KiB