有人有想法嗎
(底下的是TLE呦,不要傻傻copy下來)
#include <iostream>
using namespace std;
main()
{
cin.tie(0);
ios::sync_with_stdio(false);
long long int a,b,c,d;
while(cin>>a>>b>>c){
d=a;
cout<<a<<" ";
for(int i=1; i<c; i++){
d=(d*d)%b;
cout<<d<<" ";
}
cout<<'\n';
}
}