I don't know what happen to the new judge
I have submitted about 20 times of the problem
every time, I got a runtime error
even i use the following code, i still get runtime error:
i think the following code will not get runtime error, but it still occurs.
#include <stdio.h>
int main()
{
int pair;
int i, j, k;
int a, b;
scanf("%d", &pair);
for(i=1;i<=pair;i++)
{
for(j=0;j<2;j++)
{
for(k=0;k<3;k++)
{
scanf("%d%d", &a, &b);
}
}
printf("pair %d: ", i);
printf("yes");
printf("\n");
}
}
Problem about 11122
Moderator: Board moderators