Rule
Determine if the given 8-digit binary number is a triangular number.
Input
- You are given 50 8-digit binary numbers, joined with newline (LF).
Output
- Print
1
if given binary number is a triangular number, otherwise print 1
. In total, 50 characters will be printed.
- 0 is a triangular number.
- Space characters around the output integer are ignored.
- Do not print any characters except for
0
, 1
, or space characters.
Constraints
- 25 triangular numbers are included out of given 50 numbers.
- All 23 triangular numbers below 256 are included out of 25 triangular numbers.
- Nothing constraints about duplication and order of input.
ルール
与えられた8桁の2進数が、三角数かどうか判定せよ。
入力
- 8桁の2進数が50個、改行(LF)区切りで与えられる。
出力
- 与えられた2進数が三角数なら1を、三角数でないなら0を出力せよ。都合50個の文字が出力される。
- 0は三角数である。
- 出力に含まれる空白文字はすべて無視される。
- 0と1と空白文字以外の文字を出力してはいけない。
制約
- 与えられる50個の数のうち、三角数は25個含まれる。
- 含まれる25個の三角数には、255以下の三角数23個が全て含まれる。
- 重複と順序に関しては保証されない。