請教我如何改道不會超時(Q~Q)Q)
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main()
{
int T=0,R=0;
int ans=4;
scanf("%d %d",&T,&R);
while((ans>3)){
ans=T-(1+R)*labs(T/(1+R));
T=ans;
}
if(ans==1){
printf("1");
}else{
printf("0");
}
return 0;
}