题库练习 Madoka and Math Dad
← 上一题 下一题 →

A14932 | Madoka and Math Dad

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Madoka finally found the administrator password for her computer. Her father is a well-known popularizer of mathematics, so the password is the answer to the following problem.

Find the maximum decimal number without zeroes and with no equal digits in a row, such that the sum of its digits is $n$ .

Madoka is too tired of math to solve it herself, so help her to solve this problem!

输入格式

Each test contains multiple test cases. The first line contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Description of the test cases follows.

The only line of each test case contains an integer $n$ ( $1 \le n \le 1000$ ) — the required sum of the digits.

输出格式

For each test case print the maximum number you can obtain.

输入输出样例

输入 #1
5
1
2
3
4
5
输出 #1
1
2
21
121
212
C++ 编辑器
输入
输出