#2437. 数字螺旋(Number Spiral)

    ID: 2437 Type: FileIO (number) 1000ms 256MiB Tried: 55 Accepted: 12 Difficulty: 7 Uploaded By: Tags>其他数学模拟CSES Introductory Problems

数字螺旋(Number Spiral)

题目描述

数字螺旋是一个无限网格,其左上角的方格上有数字 1。以下是螺旋的前五层:

image

你的任务是找出第x行第y列的数字。

输入

第一行输入包含一个整数t:测试次数。

在此之后,t行,每行包含整数x和y。

输出

对于每个测试,打印第x行第y列的数字。

约束

  • 1t1051≤t≤10^5
  • 1y,x1091≤y,x≤10^9
3
2 3
1 1
4 2
8
1
15