My issue
why is showing time limit exceeded
My code
#include <stdio.h>
int main() {
int t;
scanf("%d", &t);
while(t--)
{
for(int i=0; i<t; i++)
{
int x,y;
scanf("%d %d", &x,&y);
printf("%d\n", y/x);
}
}
}
Learning course: Algorithmic Problem Solving
Problem Link: https://www.codechef.com/learn/course/klu-problem-solving/KLUPS00/problems/MANAPTS