Odd vs Even

AtCoder
IDarc116_a
Time2000ms
Memory256MB
Difficulty
Given is a positive integer $N$. Which are there more of, positive odd divisors of $N$ or positive even divisors of $N$? You will be given $T$ test cases. Solve each of them. ## Constraints * All values in input are integers. * $1 \leq T \leq 2 \times 10^5$ * $1 \leq N \leq 10^{18}$ ## Input Input is given from Standard Input in the following format: $T$ $case_1$ $\vdots$ $case_T$ Each case is in the following format: $N$ [samples]
Samples
Input #1
3
2
998244353
1000000000000000000
Output #1
Same
Odd
Even

$2$ has one positive odd divisor and one positive even divisor.
API Response (JSON)
{
  "problem": {
    "name": "Odd vs Even",
    "description": {
      "content": "Given is a positive integer $N$. Which are there more of, positive odd divisors of $N$ or positive even divisors of $N$? You will be given $T$ test cases. Solve each of them.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc116_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Given is a positive integer $N$. Which are there more of, positive odd divisors of $N$ or positive even divisors of $N$?\nYou will be given $T$ test cases. Solve each of them.\n\n## Constraints\n\n*   All ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments