Runtime Error
Code
#include <stdio.h>
int main()
{
int a,b,c;
int d,e,f;
scanf("%d%d%d", "&a, &b, &c");
scanf("%d%d%d", "&d, &e, &f");
printf("enter 6 integers", a,b,c,d,e,f);
if(a%b>d%e & b%c>e%f){
printf("Alice wins");
}
if(d%e>a%b & e%f>b%c) {
printf("Bob wins");
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1177 Remainder Game
- Contest
- Intra LU IEEE Beginner Programming Contest
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2025-02-26 07:06:53
- Judged At
- 2025-02-26 07:06:53
- Judged By
- Score
- 0
- Total Time
- 1ms
- Peak Memory
- 284.0 KiB