67482023-12-18 18:05:16szasztundeSorozat generáláscpp17Runtime error 30/504ms3748 KiB
#include <iostream>

using namespace std;
int t[1000000]={0},p[1000000]={0};
int main()
{
    int m,x,a,b,n,k,ism=0,max=0;
    cin>>m>>x>>a>>b>>n>>k;
    for(int i=1;i<=n;i++)
    {
        long long y=x*a+b,z=0,h=1;
        for(int j=1;j<=m;j++) y=y/10;
        for(int j=1;j<=2*m;j++) h=h*10;
        z=y%h;
        if(z>max) max=z;
        t[z]++;
        if(p[z]==0) p[z]=i;
        else if (ism==0) ism=i-p[z];
        x=z;
    }
    cout<<ism<<endl;
    int db=0,i=max;
    while(db<k)
    {
        if(t[i]>0)
        {
            db++; t[i]--;
        }
        else i--;
    }
    cout<<i;
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base30/50
1Accepted0/03ms1756 KiB
2Runtime error0/03ms2272 KiB
3Accepted2/23ms2148 KiB
4Accepted2/23ms2212 KiB
5Accepted2/23ms2428 KiB
6Accepted2/23ms2660 KiB
7Accepted2/23ms3000 KiB
8Accepted4/43ms3048 KiB
9Accepted4/43ms3048 KiB
10Accepted4/44ms3144 KiB
11Accepted4/44ms3352 KiB
12Accepted4/44ms3384 KiB
13Runtime error0/43ms3420 KiB
14Runtime error0/43ms3208 KiB
15Runtime error0/43ms3472 KiB
16Runtime error0/43ms3748 KiB
17Runtime error0/43ms3732 KiB