1001. Death penalty (3n+1) conjecture (15) time limit MS Memory limit 65536 KB code length limit 8000 B procedure StandardAuthor Chen, Yue
Karaz (Callatz) conjecture:
For any natural number n, if it is even, cut it in half, and if it is odd, cut it off by half (3n+1). This has been repeatedly cut down, and finally must be in a certain step to get n=1. Karaz at the 1950 World Mathematicians conference published this conjecture, the legend of Yale University teachers and students to mobilize, desperately want to prove this seemingly silly very naïve proposition, the result of students do not want to study, the only card (3n+1), so that some people say this is a conspiracy, Karaz is deliberately delaying the progress of teaching and research in the American mathematical world ...
Our topic today is not to prove Karaz conjecture, but to give no more than 1000 positive integers n, simply to count, how many steps (a few cuts) are needed to get n=1?
input Format: each test input contains 1 test cases, which gives the value of the natural number N.
output format: outputs the number of steps required to calculate from N to 1.
Input Sample:
3
Sample output:
5
Submit Code
1#include <stdio.h>2 3 intMain ()4 {5 intN,count=0;6scanf"%d",&n);7 while(n>1){8 if(n%2==0 )9n=n/2;Ten Else OneN= (3*n+1)/2; Acount++; - } -printf"%d\n", count); the return 0; -}
PAT (Basic level) practise (English) 1001