Accepted
Code
int main(){
int x,y,z ;
scanf("%d",&x);
scanf("%d",&y);
scanf("%d",&z);
if(( x % 2 == 1 && y % 2 == 1 ) || ( x % 2 == 0 && y % 2 == 0 ))
{
printf("%d",z);
}
else if(( y % 2 == 1 && z % 2 == 1 ) || ( y % 2 == 0 && z % 2 == 0 ))
{
printf("%d",x);
}
else if(( z % 2 == 1 && x % 2 == 1 ) || ( z % 2 == 0 && x % 2 == 0 ))
{
printf("%d",y);
}
return 0;
}
Information
- Submit By
- Type
- Pretest
- Problem
- P1232 Parity
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2025-09-01 07:26:00
- Judged At
- 2025-09-01 07:26:00
- Judged By
- Score
- 40
- Total Time
- 2ms
- Peak Memory
- 320.0 KiB