81

AtCoder
IDabc144_b
Time2000ms
Memory256MB
Difficulty
Having learned the multiplication table, Takahashi can multiply two integers between $1$ and $9$ (inclusive) together. Given an integer $N$, determine whether $N$ can be represented as the product of two integers between $1$ and $9$. If it can, print `Yes`; if it cannot, print `No`. ## Constraints * $1 \leq N \leq 100$ * $N$ is an integer. ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
10
Output #1
Yes

$10$ can be represented as, for example, $2 \times 5$.
Input #2
50
Output #2
No

$50$ cannot be represented as the product of two integers between $1$ and $9$.
Input #3
81
Output #3
Yes
API Response (JSON)
{
  "problem": {
    "name": "81",
    "description": {
      "content": "Having learned the multiplication table, Takahashi can multiply two integers between $1$ and $9$ (inclusive) together. Given an integer $N$, determine whether $N$ can be represented as the product of ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc144_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Having learned the multiplication table, Takahashi can multiply two integers between $1$ and $9$ (inclusive) together.\nGiven an integer $N$, determine whether $N$ can be represented as the product of ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments