Details
Description
This code in C:
int main() {
int x;
x = 5;
if (x == 5) {
return 1;
}
return 0;
}
has overall status Accepted despite all tests give Runtime error.
int main() {
int x;
x = 5;
if (x == 5) {
return 1;
}
return 0;
}
has overall status Accepted despite all tests give Runtime error.
Activity
- All
- Comments
- History
- Activity
- Transitions
- Commits