码迷,mamicode.com
首页 > 其他好文 > 详细

SPOJ Problem 9948:Will it ever stop

时间:2015-03-06 22:01:34      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

如题。。http://www.spoj.com/problems/WILLITST/

#include<cstdio>
long long n;
int main(){
    scanf("%lld",&n);
    while(n>1){
        if (n==3||n==6){printf("NIE\n");return 0;}
        if (n&1)n=(n+1)/2*3;else n>>=1;
    }
    printf("TAK\n");
}

 

SPOJ Problem 9948:Will it ever stop

标签:

原文地址:http://www.cnblogs.com/moris/p/4319263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!