/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 284.0 KiB
#2 Wrong Answer 2ms 284.0 KiB
#3 Wrong Answer 2ms 284.0 KiB

Code

#include <stdio.h>

int main(){
  int x,y,z ;
  
  
  scanf("%d",&x);
  scanf("%d",&y);
  scanf("%d",&z);
  
 if( x % 2 == 1 && y % 2 == 1 ) 
 {
   printf("%d",z);
 } 
 else if( y % 2 == 1 && z % 2 == 1 )
 {
   printf("%d",x);
 } 
 else if( z % 2 == 1 && x % 2 == 1 )
 {
   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:24:40
Judged At
2025-09-01 07:24:40
Judged By
Score
10
Total Time
2ms
Peak Memory
284.0 KiB