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

SPOJ Problem 7974:What's Next

时间:2015-03-04 18:34:38      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

求数列下一项,啥都不说了,贡献了N多WA。。。

#include<cstdio>
int main(){
    int a,b,c;
    while(scanf("%d%d%d",&a,&b,&c)&&(a||b||c)){
    if (b*2==c+a&&b!=a)
        printf("AP %d\n",2*c-b);
    else
        printf("GP %d\n",c*c/b);
    }
    return 0;
}

 

SPOJ Problem 7974:What's Next

标签:

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

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