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

今天石大比的赛,这道问题 A: Snake Filled主要是队友做出来的,我就简做个记录

时间:2016-06-11 00:33:02      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

“What a boring world!”
Julyed felt so bored that she began to write numbers on the coordinate paper. She wrote a “0” on the center, then wrote the follow numbers clockwise, which looked like a snake as below.

  技术分享

“Damn! I have fulfilled the paper!”
Julyed was looking at paper. Suddenly, she began to feel curious.
“What is the nth number on the positive axis of Y axis?”
She asked tomriddly for the question. But tomriddly was so busy that he ignored Julyed. So now you have to solve this problem.

输入

Multiple test cases.
The first line contains an integer T (T <= 50), indicating the number of test cases.
Then T lines follows, one line per case. Each line contains a positive integer n (n <= 3000).

输出

One line per case. An integer indicates the nth number on the positive axis of Y axis.
程序设计:
 #include<stdio.h>
#include<math.h>
int main()
{
  int a,b;
  int s;
  int t;
  while(scanf("%d",&a)!=EOF) {
  int i;
      for(i=0;i<a;i++){
      scanf("%d",&b);
      s=pow(b+b+1,2);
      t=s-(b+b+1)-(b+b+1)/2;
      printf("%d\n",t);
      }
  }
  return 0;
}

今天石大比的赛,这道问题 A: Snake Filled主要是队友做出来的,我就简做个记录

标签:

原文地址:http://www.cnblogs.com/tong69/p/5574532.html

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