/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 0ms 284.0 KiB
#2 Wrong Answer 0ms 320.0 KiB

Code

#include<stdio.h>
int main(){
long long int a,b,i,c,d;
scanf("%lld %lld", &a,&b);
for(i=1;;i++){
if(a>b){
    a=abs(a-b);
    if (a==0) break;
}
else{
    b=abs(a-b);
     if (b==0) break;
}

}
printf("%lld", i);



}

Information

Submit By
Type
Submission
Problem
P1029 Make it zero
Contest
Brain booster #2
Language
C99 (GCC 13.2.0)
Submit At
2024-03-06 16:18:13
Judged At
2024-11-11 03:41:22
Judged By
Score
0
Total Time
0ms
Peak Memory
320.0 KiB