Multiple of 9

AtCoder
IDabc176_b
Time2000ms
Memory256MB
Difficulty
An integer $N$ is a multiple of $9$ if and only if the sum of the digits in the decimal representation of $N$ is a multiple of $9$. Determine whether $N$ is a multiple of $9$. ## Constraints * $0 \leq N < 10^{200000}$ * $N$ is an integer. ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
123456789
Output #1
Yes

The sum of these digits is $1+2+3+4+5+6+7+8+9=45$, which is a multiple of $9$, so $123456789$ is a multiple of $9$.
Input #2
0
Output #2
Yes
Input #3
31415926535897932384626433832795028841971693993751058209749445923078164062862089986280
Output #3
No
API Response (JSON)
{
  "problem": {
    "name": "Multiple of 9",
    "description": {
      "content": "An integer $N$ is a multiple of $9$ if and only if the sum of the digits in the decimal representation of $N$ is a multiple of $9$. Determine whether $N$ is a multiple of $9$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc176_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "An integer $N$ is a multiple of $9$ if and only if the sum of the digits in the decimal representation of $N$ is a multiple of $9$.\nDetermine whether $N$ is a multiple of $9$.\n\n## Constraints\n\n*   $0 ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments