3021.Triangular numbers

Time Limit: 1s Memory Limit: 256MB

A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The n-th triangular number is the number of dots in a triangle with n dots on a side. 3021_1.png. You can learn more about these numbers from Wikipedia (http://en.wikipedia.org/wiki/Triangular_number).

Your task is to find out if a given integer is a triangular number.

Input Format(From the terminal/stdin)

The first line contains the single number n (1 \le n \le 500) - the given integer.

Output Format(To the terminal/stdout)

If the given integer is a triangular number output YES, otherwise output NO.

Sample Input 1

Copy
1
 \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
2
 \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
3
 \n

Sample Output 3

Copy
YES
   \n

Submit

请先 登录

© 2025 FAQs