Show More
Commit Description:
autonew skips submissions with bad problems, forbids getch, better compiler msg when preprocessing fails, reports compile error when the executable is too large (100MB)
Commit Description:
autonew skips submissions with bad problems, forbids getch, better compiler msg when preprocessing fails, reports compile error when the executable is too large (100MB)
File last commit:
Show/Diff file:
Action:
test/data/add_fail_test_case_1.c | 14 lines | 171 B | text/x-c | CLexer |
#include <stdio.h>
int main()
{
int a,b;
int r;
r = scanf("%d %d",&a,&b);
if((a==1) && (b==1))
printf("100\n");
else
printf("%d\n",a+b);
return 0;
}